fullworks
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Post appearing in category archive when it shouldn’t“a post is showing up on the category archive page”
“However, if I view the category via API (/wp-json/wp/v2/rulings?categories=9008), everything looks fine ”
You mentioned plugins, but not themes. Have you switched to default theme, as at first glance I would guess a theme / archive template issue
Forum: Everything else WordPress
In reply to: Custom Post Type to WordPress CategoryRegistered post types are stored in global $wp_post_types. It’s an array of WP_Post_Type objects. You can directly set or unset properties as well as call its methods. A few lines of code and you are done.
I doubt if there is a plugin to do this as it is pretty specific to the custom post types / needs.
Forum: Plugins
In reply to: [Quick Paypal Payments] Disable deliveryI meant to add the definition for reference
no_shipping
Optional
Do not prompt buyers for a shipping address.Valid value is:
0. Prompt for an address, but do not require one.
1. Do not prompt for an address.
2. Prompt for an address and require one.
Default is 0.Character Length: 1
Forum: Plugins
In reply to: [Quick Paypal Payments] Disable deliveryIf you want to modify the plugin then you can do so of course it is GPL.
Find function qpp_process_form
in legacy/quick-paypal-payments.phpand find
<input type=”hidden” name=”currency_code” value=”‘.$currency[$id].'”>’;
and add no_shipping
e.g.
<input type=”hidden” name=”currency_code” value=”‘.$currency[$id].'”>
<input type=”hidden” name=”no_shipping” value=”1″>’;Of course this is just guidance, I haven’t tested it and changes you make are as always at your own risk. ( as it the use of the plugin anyway )
Of course any changes you make would be overwritten by releases, so it will be up to you to ensure you have a mechanism to stop that – I would recommend completely cloning the plugin changing the plugin name etc.
If you like, I could actually add this as an option within the core plugin, but that will take me time to code / test / release and for my time I do need to charge costs.
Forum: Plugins
In reply to: [Quick Paypal Payments] Disable deliveryThank you for your interest.
Presently there is no option to suppress delivery address. It is a good idea to have such an option and I will add that to the wish list for a future release.
Alan
I think your question is about V3 and V2 compatibility?
If is say V2 or later you are OK to use V3
If it says only V2 then only V2
From https://www.gnu.org/licenses/gpl-faq.en.html#v2v3Compatibility
Is GPLv3 compatible with GPLv2? (#v2v3Compatibility)
No. Many requirements have changed from GPLv2 to GPLv3, which means that the precise requirement of GPLv2 is not present in GPLv3, and vice versa. For instance, the Termination conditions of GPLv3 are considerably more permissive than those of GPLv2, and thus different from the Termination conditions of GPLv2.Due to these differences, the two licenses are not compatible: if you tried to combine code released under GPLv2 with code under GPLv3, you would violate section 6 of GPLv2.
However, if code is released under GPL “version 2 or later,” that is compatible with GPLv3 because GPLv3 is one of the options it permits.
Forum: Plugins
In reply to: [Stop WP Emails Going to Spam] Cannot get DNS recordsFirst, don’t worry about it too much ( in terms of this plugin )
If you are seeing the SPF on other SPF testing tools then that means your SPF is good.
The SPF information provided by the plugin is for information only and does not impact the setting of the mail settings.
What is likely happening is that your server is not setting things up in a ‘normal’ way and that is stopping the plugin reaching out to correctly find the SPF but that doesn’t mean it doesn’t work
Are you getting – “Cannot identify a valid IP address” or something else?
Sorry for the long delay in answering.
I have added you idea to the list of future enhancements
Forum: Plugins
In reply to: [Stop WP Emails Going to Spam] issueSorry I didn’t get back sooner. Unfortunately your request is specific to what ever is building the ajax login pop up and not my plugin so something I’m not familiar with.
Forum: Plugins
In reply to: [Quick Paypal Payments] change “from” emailIf I understand which message you are talking about, it is either general settings email or what you set in ‘Send Options’ Confirmation Message. ( unless some other plugin overrides it )
Forum: Plugins
In reply to: [Stop WP Emails Going to Spam] issueHi,
There are many reasons that emails end up in spam. This plugin helps with a couple but can’t solve them all.
Alan
Forum: Plugins
In reply to: [Display Eventbrite Events] Duplicating events.I haven’t heard back from you so I assume you have resolved this or moved on.
Forum: Plugins
In reply to: [Display Eventbrite Events] Eventbrite API changesThank you for your interest in this plugin, to answer the points made:
“Ensure that your application can handle API requests and responses which include the ‘event.summary’ field”
event.description will be deprecated on March 1st, 2021.
The plugin will be adjusted prior to that date.
“Ensure you are retrieving the full HTML event description content (formerly ‘event.description.html’) by calling the /v3/events/:id/description/ endpoint”
The full HTML description is only available in the pro version ( which uses this endpoint )
“If you are not already doing so, implement the use of Structured Content to create the event description content as detailed below”
The plugin does not create events so not relevant.
Forum: Plugins
In reply to: [Meet My Team] WordPress 5.6Hi I pushed out 2.0.0 to fix that but for some reason I failed to get it uploaded correctly.
Version 2.0.2 should now be good, you will likely have to clear your browser cache to reload the jaascript. Let me know how you get on.
Alan
Forum: Plugins
In reply to: [Responsive Mortgage Calculator] WordPress 5.5 deprecation noticeI guess the developer won’t be back?