Lech Dutkiewicz
Forum Replies Created
-
Forum: Plugins
In reply to: [EU/UK VAT Validation Manager for WooCommerce] Change input nameThanks a lot for your reply.
- This reply was modified 3 years ago by Lech Dutkiewicz.
OK, thanks for your reply, but it didn’t help a lot. I know I can add those scripts do exclude from deffered/delayed and exclude from minification/merge. I already said I did try it.
I checked it once again and there is an inline script added by WooCommerce that has to run before the flexslider scripts initiation.
I managed to fix it by excluding from js minify/merge and from js deffer/delay these:
I hope it will helps someone else, since I’ve seen more people than just me were looking for a solution to this problem.
/wp-content/plugins/woocommerce/assets/js/frontend/single-product.min.js /wp-content/plugins/woocommerce/assets/js/flexslider/jquery.flexslider.min.js wc_single_product_paramsI think it might be a good idea to add it to the LiteSpeed cache plugin as part of integration with WooCommerce. Maybe as an option somewhere. I’ve spent about 5 hours trying to figure the whole thing out and I guess many people use LiteSpeed + WooCommerce with native product page gallery and also delay their scripts. So why not to save them some time?
Forum: Plugins
In reply to: [Enhanced AJAX Add to Cart for WooCommerce] How to integrate this with GTM?This helped a lot and solved my problem. Thanks!
Forum: Plugins
In reply to: [a3 Lazy Load] Making hard coded images lazy loadHi, I hope it will help you. On the plugin main page in the bottom section you can find:
Apply lazy load for images in content.
a3_lazy_load_images
Example:
apply_filters( ‘a3_lazy_load_images’, $your_content, null );Apply lazy load for videos and iframe from content.
a3_lazy_load_videos
Example:
apply_filters( ‘a3_lazy_load_videos’, $your_content, null );Apply lazy load for all images, videos and iframe from content
a3_lazy_load_html
Example:
apply_filters( ‘a3_lazy_load_html’, $your_content, null );Hi, thanks for your reply.
It was 2.2.0 and I see in the changelog that 2.2.1 fixed the issue. Thanks a lot, everything works fine with autocompleted fields now!
Hi, thanks for your reply.
I’m sure it works without the shortcode. I’ll pass a link to you, but please visit first http://www.project-travel.pl/?internal, so your visit won’t be recorded with Google Analytics. This link creates a cookie, so I can filter out your future visits in Analytics.
The link with CF7 form I’m giving you is to one of my conversion pages and I don’t want to mess up the statistics.
Here is a link with ?camp=Oxford passed and the first form field is native CF7 select with
default:get.http://www.project-travel.pl/obozy-jezykowe-dla-dzieci-2019/ferie/rejestracja/?camp=Oxford
Dear @gusruss89
It works well now. Thank you for the update and for such quick fix.
Your help has exceeded my expectations when I posted here 🙂
Dear @gusruss89,
Thank you so much for such a quick reply. I hope it won’t be difficult to fix 🙂
As far as I know, GDPR requires so the website is available with its 100% functionality also for visitors who don’t give you consent.
So I doubt this feature would be GDPR friendly.
2. A site cannot stop or block content if no tracking consent is given.
Forum: Plugins
In reply to: [Social Profiles] Cannot update my blog with this plug-in activeHi, I had the same problem and figured out how to fix it.
Change the sticky-social-profiles/core/admin.php file in line 40 from:if (!empty($_POST)) {to:
if (!empty($_POST) && $_POST['option_page'] === 'social-profiles') {It’s working well for me.