clickingclients
Forum Replies Created
-
Forum: Plugins
In reply to: [VikBooking Hotel Booking Engine & PMS] Currency Symbol not correct in $@e4jvikwp Thank you. That fixed it!
Great support & plugins so far!I’m getting a similar error.
OMGF encountered an error while downloading Google Fonts: http_request_failed – cURL error 18: transfer closed with outstanding read data remaining
- This reply was modified 3 years, 6 months ago by clickingclients.
Forum: Plugins
In reply to: [Brevo for WooCommerce] Slow during checkout due to SubscriptionThis case should still be open.
Sure, they picked it up only to then say: “Nah – it’s not slow.” When my screencast evidence clearly showed otherwise.
So the original question remains – how can we delay the SendInBlue portion of the AJAX call?- This reply was modified 3 years, 7 months ago by clickingclients.
Did it get solved?
Forum: Plugins
In reply to: [Brevo for WooCommerce] Slow during checkout due to SubscriptionThanks Sarah. I believe Zachary is now on the case.
It’d be great to have a toggle which gives us the option to defer the email and not interfere with UX.
Functionality akin to this:
https://www.damiencarbery.com/2020/04/defer-woocommerce-emails-for-a-few-minutes/Forum: Plugins
In reply to: [Facebook for WooCommerce] How to disable tracking etc while admin logged in?That works perfectly.
I’ll make it a generic wrapper and throw in other plugins I want disabled on frontend while logged in.
Thanks!Forum: Plugins
In reply to: [Brevo for WooCommerce] Slow during checkout due to SubscriptionThis shows the event selected: https://www.dropbox.com/s/nxghy9qj6sv3avf/subscribe-event-slowing.png?dl=0
Forum: Plugins
In reply to: [WooCommerce] SQL to delete duplicated orders (not original order)I think I’ve done it…
DELETE pm.* FROM My_DB_.wp_postmeta as pm INNER JOIN My_DB_.wp_posts as p ON p.ID = pm.post_id WHERE p.post_type = 'shop_order' AND pm.post_id <= 7093 AND pm.post_id >= 7085 AND pm.meta_id NOT IN (SELECT * FROM (SELECT MIN(pm.meta_id) FROM wp_postmeta pm GROUP BY pm.post_id, pm.meta_key) x)
Next if I remove ” AND pm.post_id <= 7093 AND pm.post_id >= 7085″ it should do the whole job. ??
Forum: Fixing WordPress
In reply to: SQL to delete duplicated posts/ORDERS (not original order)I think I’ve done it…
DELETE pm.* FROM My_DB_.wp_postmeta as pm INNER JOIN My_DB_.wp_posts as p ON p.ID = pm.post_id WHERE p.post_type = 'shop_order' AND pm.post_id <= 7093 AND pm.post_id >= 7085 AND pm.meta_id NOT IN (SELECT * FROM (SELECT MIN(pm.meta_id) FROM wp_postmeta pm GROUP BY pm.post_id, pm.meta_key) x)
Next if I remove ” AND pm.post_id <= 7093 AND pm.post_id >= 7085″ it should do the whole job. ??
Forum: Plugins
In reply to: [Advanced Dynamic Pricing for WooCommerce] Buy 5, Get 2 Extra FreeThanks. Confirmed the released fix works.
Forum: Plugins
In reply to: [Advanced Dynamic Pricing for WooCommerce] Buy 5, Get 2 Extra FreeThanks @missundaztood
Hmmm it is not working for when I put 2 in the Free Products field.
The ONLY I can get it adding two products is to repeat that row.
Even if I change your 2 to a 3, it still only adds 1 per row.https://www.dropbox.com/s/6zy7dq2qcjh3v5w/5-plus-2-notworking.png?dl=0
- This reply was modified 3 years, 7 months ago by clickingclients.
Forum: Plugins
In reply to: [Speed Optimizer - The All-In-One Performance-Boosting Plugin] 301 RedirectOk thanks – it was Chat ID 7409639
Forum: Plugins
In reply to: [Speed Optimizer - The All-In-One Performance-Boosting Plugin] 301 Redirect@stoyangeorgiev Thank you.
I’ll email support rather than posting it here.- This reply was modified 3 years, 8 months ago by clickingclients.
@one3rdnerd Yes I was getting that exact error.
It seems to have fixed the issue.@one3rdnerd
On siteground plugin: Using the cache url excluder I’ve added url with wild cards to avoid them:https://www.MYSTORE.COM/*?fbclid=*
This seems to work when testing in the excluder. Now to just wait and see if it is working in the wild for customers.
I spoke with SG support and they offered the following:
Let’ s fix it by adding a special rule that should stop the caching from caching those URLs and cause the issues
Please, access your Site Tools -> Site -> File Manager -> public_html and find your .htaccess. In it paste this code:Header set Cache-Control “no-cache, private”`