Paul
Forum Replies Created
-
And no: This is not a commercial support issue, it’s an issue where a plugin developer updates a very core feature of their plugin making the commercial plugin unusable. Essentially a bait-and-switch.
To anybody affected, rollback to Version 3.6.6.
Here is the update prompt from Version 3.6.6 to Version 4+. No warning that this update breaks your site, no email, nothing.
https://snipboard.io/xvdbLi.jpg
- This reply was modified 1 year, 9 months ago by Paul.
Here is my snippet, feel free to modify as you need.
function hide_flat_rate_if_free_shipping_available($rates) {
$free_shipping = false;
$flat_rate = false;
// Check available methods
foreach ($rates as $rate_id => $rate) {
if ('free_shipping' === $rate->method_id) {
$free_shipping = true;
}
if ('flat_rate' === $rate->method_id) {
$flat_rate = $rate_id;
}
}
// If both methods are available, remove flat rate shipping and keep free shipping
if ($free_shipping && $flat_rate) {
unset($rates[$flat_rate]);
}
return $rates;
}
add_filter('woocommerce_package_rates', 'hide_flat_rate_if_free_shipping_available', 100);Hi @alex-caravaca-ponce You can try this plugin:
https://ww.wp.xz.cn/plugins/wp-downgrade/Unfortunatelly it didn’t work for me, so I had to restore from yesterdays backup after exporting some mission critical data.
Hey Jory,
Thanks for your reply. I tried clearing the cache and also object caching is currently disabled. Frontend cache is active but this is backend. Very strange.
Just heard from my client that it only applies to posts (blog) and not other post types.
Do you have any idea why it wouldnt work? (Sorry if this is some banal issue, I normally use ACF and am very new to Pods.)Forum: Plugins
In reply to: [Ultimate Reviews] Can I use it for a CPT?CPT = Custom Post Type
Sadly the answer apears to be “no”, as this is why I am coming here to look. The plugin does not load on my custom post type. (example: business listings)Hi there,
Thank you for exploring all options. This is great support!
1. No, it does not. I even disabled any and all caching systems to simplify this.
2. We added via the shortcut.
3. Changing the setting to allow indexing does not fix this, unfortunately.
4. No PHP errors.
Hi there,
I am familiar with checking for conflicts, as I have stated this in the first post. I have already disabled all plugins and theme and the problem is not resolved, leading me to the conclusion that the issue is on yoast SEO.
Hi,
Unfortunately no difference. I also did the other resets from the helper plugin, for good measure. No help unfortunately.
Any other ideas what I can try?Kind regards
Hi,
You asume correctly, the breadcrumb should be “Blog” and not “Hyperlinks”. Instead it links to tag/hyperlinks instead of /blog.
Some other posts have the same behaviour, some work correctly. However it’s always the “Hyperlinks” tag. Hyperlinks as a tag is only used in one post.A screenshot of the fairly default configuration we use: https://prnt.sc/11x0tku
Thank you very much for your time!
Dear Maybellyne,
Thank you for getting back to me so quickly.
Yes the tag is an existing one but completely unrelated to the post(s) in question.Here is a link to an example.. the breadcrumb should link to “Blog”. Its also always the same tag that is shown.
https://www.solutions2share.com/new-teams-manager-release-metadata-guest-access-and-more/Thanks!
Forum: Plugins
In reply to: [Store Hours for WooCommerce] How does the force override work?Further research:
The only distinct value I could find that changes is this:
(71942, ‘zh_dbd3f_79985_993c0_30064’, ‘a:1:{i:0;s:1:\”1\”;}’, ‘yes’),
if the force override is inactive, the value is empty.But injecting alone does not force close the store. Is there something else being done when you press save? Like a file created/deleted?
Forum: Plugins
In reply to: [Frontend File Manager Plugin] Faulty uploads/downloadsHey N-Media – I have cloned the site to a completely different environment. Problem presists, so I went bughunting.
Turns out, the issue happens when BuddyPress is activated. As soon as I deactivate BP, it works flawlessly.
I hope that helps. I hope you can replicate and fix the issue.
Also if this issue is for some reason exclusive to the free plugin, I will gladly purchase the Pro version. (Free simply covers all my client needs, so telling him to buy the pro isn’t really justifiable even though I like supporting good devs)Forum: Plugins
In reply to: [Frontend File Manager Plugin] Faulty uploads/downloadsYou are right and I have tried that and it worked on another server.
Do you have seen this issue before? Perhaps I can look for a direct solution instead of wildly looking. Would you say its php related?