Warren
Forum Replies Created
-
Hi @femiyb,
The errors are still occurring but they are less frequent thankfully, approx 60 x times yesterday which is a lot less than before, but still not zero.
Best regards
WarrenWe’re getting the same issues, Apple Pay and Google Pay orders seem to be worst affected with customers reporting problems when trying to checkout.
I have installed ….simulate_cart_enabled’, ‘__return_false’… filter as recommended above and I have disabled LiteSpeed cache in Debug Settings.
We’ll monitor log activity today and report back soon.
Thanks
Warren- This reply was modified 2 years ago by Warren. Reason: grammer
Forum: Developing with WordPress
In reply to: What’s this new frontend CSS ouptut in 6.5?Yes I totally agree, this is utter buffoonery by WordPress 🤷
Does anyone have a fix for this?
Hi Daniel (@danieliser)
Thanks for getting back to us so quickly!
Yes I processed the updates and they succeeded. From memory yes the restrictions looked fine. The settings basically show different fields for users depending on whether they are logged in or not logged in.
I cannot replicate the update on the live production site as it is in constant use so I will setup and staging/testing site and will come back to you with an update soon.
Thanks
WarrenHi @vinod-dalvi,
Thanks for your reply and apologies for my delayed reply.
Does the issue get resolved If you temporarily deactivate the Ivory Search plugin?
Yes
Do you face this issue only If you use multiple search forms on the same page?
No, the issue is present with both single and multiple search forms.
Best regards
WarrenForum: Plugins
In reply to: [Collapse-O-Matic] v1.8.5.5 Still Flagged by WordFenceYes there is a lot of love for Collapse-O-Matic so it would be such a pity if it gets retired 😞
Forum: Plugins
In reply to: [Redirection] 287,000+ 301 RedirectsHi John,
The JPG/JPEG files no longer exist in their original locations, so re ‘the final part’ of the link above, this shouldn’t be an issue.
However my concern is the sheer number or redirects (287,000+) required.
Do think its possible to handle this many?Forum: Plugins
In reply to: [Redirection] 287,000+ 301 RedirectsHi John, thank you for the quick response!
I am struggling to see a pattern to be honest, apart from the first parts of the file names, please see examples below:FROM:
usedkitchenexchange.co.uk/wp-content/uploads/2022/07/Electrolux-Grand-Cuisine-Induction-Zone-4-600×420.jpg,
TO:
https://www.rehome.co.uk/media/catalog/product/cache/eda4d03db026547577108b6fbf601cd3/E/l/Electrolux-Grand-Cuisine-Induction-Zone-4_1647911795e8f5.jpgFROM:
usedkitchenexchange.co.uk/wp-content/uploads/2020/11/Ex-Display-Kitchen-Run-Italian-Designer-Aster-Atelier-North-2-870×610.jpg,
TO:
https://www.rehome.co.uk/media/catalog/product/cache/eda4d03db026547577108b6fbf601cd3/E/x/Ex-Display-Kitchen-Run-Italian-Designer-Aster-Atelier-North-7_16478b79e20421.jpgFROM:
usedkitchenexchange.co.uk/wp-content/uploads/2021/11/Reconditioned-Quooker-Tap-Fusion-Square-Stainless-Steel-4.jpg,
TO:
https://www.rehome.co.uk/media/catalog/product/cache/eda4d03db026547577108b6fbf601cd3/R/e/Reconditioned-Quooker-Tap-Fusion-Square-Stainless-Steel-4-scaled_164790b763a1c4.jpgThere are 285,000 like this!
What do you think?
Many thanks
WarrenForum: Plugins
In reply to: [LiteSpeed Cache] Gravity Forms reCAPTCHA V3 Not Working with LiteSpeed CacheThe issue was caused by a JavaScript error with the reCAPTCHA feature on your site, which was preventing the form from being submitted successfully.
We asked our system admins to take a look at this issue, and they were able to fix it by comparing the source code of your site before and after optimizations/cache to find a difference.
They noticed that the optimized code was localizing the reCAPTCHA JavaScript file, which means it was trying to load a local copy of the file instead of the remote version from Google.
However, the script specifically said, “PLEASE DO NOT COPY AND PASTE THIS CODE” in the link, indicating that it may not work properly unless loaded remotely.
They removed the script from the localisation files list and cleared the cache, which resolved the error and allowed the form to be submitted.
Forum: Plugins
In reply to: [LiteSpeed Cache] Gravity Forms reCAPTCHA V3 Not Working with LiteSpeed CacheHello @qtwrk ,
Thanks for your reply, I have sent the report just now. Looking forward to hearing back from you 🙂
Many thanks
WarrenThanks so much for getting back to me so quickly, yes I managed to get it working again by removing some filters in the theme put in by another developer.
I haven’t had chance to look at the errors above yet, I’m just happy I got Ditty working again for now.
Thanks again!
Warren- This reply was modified 3 years ago by Warren. Reason: typo
Hi Saif,
Thanks so much for your effort on this. I tried your code above but sadly that didn’t work either, which is quite puzzling.
I think for now we will give up as there seems to be no straight forward solution to this. 😔
Thanks again, Warren
Hi Igor,
Thanks again for checking this for us.I rolled back to 6.3.1 as you recommended but the issue remains the same. Its as if WooCommerce will only allow the category title and nothing else to be displayed in the sub category link blocks.
I added this:
add_action( 'woocommerce_before_shop_loop', 'woocommerce_subcategory_short_desc', 10 );…to show that the custom field does actually work elsewhere, please see screenshots below:




Here is the category link https://dev.123meds.uk/treatments/general-health/
Could it be something to do with the post ID or something like that? I’m clutching at straws now 🙂
Any other suggestions or recommendations would be warmly appreciated.
Many thanks
WarrenHi Igor,
Thanks so much for getting back to me!
I have done as you asked and deactivated all plugins except WC and ACF, and switched to Storefront but the field still isn’t outputting.
https://dev.123meds.uk/treatments/chronic-conditions/

Here is the code I have in functions:
// Sub Category Page Customisations 230311 remove_action( 'woocommerce_before_subcategory_title', 'woocommerce_subcategory_thumbnail', 10 ); add_action( 'woocommerce_after_subcategory_title', 'woocommerce_subcategory_short_desc', 10 ); function woocommerce_subcategory_short_desc() { if ( is_product_taxonomy() && 0 === absint( get_query_var( 'paged' ) ) ) { $term_id = get_queried_object()->term_id; $post_id = 'product_cat_'.$term_id; echo '<p class="test">Custom Field Should Display Here?</p>'; $custom_field = get_field('short_category_description', $post_id); echo $custom_field; } } add_action( 'woocommerce_after_subcategory_title', 'woocommerce_subcategory_view_treatments_button', 20 ); function woocommerce_subcategory_view_treatments_button() { echo '<button>View products</button>'; } // END Sub Catrgory Page Customisations 230311And here is my ACF configuration:

Do you have any other suggestions?
Many thanks
WarrenForum: Plugins
In reply to: [LiteSpeed Cache] Gravity Forms Not Loading when LiteSpeed Cache is EnabledHi @qtwrk
Thanks so much for getting back to me! I had the message below from Gravity Forms Support:
Caching and script optimization plugins and services, like LiteSpeed Cache, have been known to cause issues like this. Try the third-party Fresh Forms for Gravity add-on, it can resolve issues caused by some caching and script optimization plugins: https://ww.wp.xz.cn/plugins/fresh-forms-for-gravity/
I installed this plugin and it fixed the issue 👍