Aleksandar
Forum Replies Created
-
Hi @vmarko,
Thanks for opening the issue.
I’ll follow up there from now.
Cheers,Hi @vmarko,
I hope all is well.
Any updates on the possible filter solution?
ThanksHi,
I already tested this locally and it works. I didn’t change this on the demo site I shared, but locally and I can confirm this fixes a problem.
That is why I need a way to filter these values so that when I update the plugin I don’t lose the fix.
Is there a way to filter or remove these values from PgCache_QsExempts.php so I can update the plugin in the future?
ThanksHi Marko,
I’ve setup a replicated bug on another website where you can view the URL.
So, the problem is next:- If you visit this url, you will get the cached page https://gutenberg.acapredic.com/cache-plugin-problem/
- If you visit the same url, with some UTM query string, you will also get the cached version of the page https://gutenberg.acapredic.com/cache-plugin-problem/?utm_source=Yelp&utm_medium=Banner&utm_campaign=Burlingame&utm_id=111721
- If you visit this url, where I just added one more query string “test” at the end, you will get non-cached version as now we have one param that is not on the ignore query string list https://gutenberg.acapredic.com/cache-plugin-problem/?utm_source=Yelp&utm_medium=Banner&utm_campaign=Burlingame&utm_id=111721&test=1
If needed, for this website, I can even create a user for you so you can test yourself.
I hope this helps in debugging.
Please let me know what you found out. Thanks
I’ve disabled thw page cache on the website temporary as this was creating problems for my client. So I can’t share the url.
I rread the documentation and I saw that the url is not cached if it has query string. But if you use some url for ads that has all query strings matching the strings in the ignore list I mentioned in the first comment, then they are all ignored and the cache is served. It is enough to just add. one more query string that is not in the ignore array and you will bypass the cache.
That is why I need to use the filter to remove some items from the w3-total-cache/PgCache_QsExempts.php class method array.
Is this filtering possible?
thanks
Hi Marko,
Thanks for the help.
The option “Cache URIs with query string variables” is disabled.
Caching method is Disk enhanced.Forum: Plugins
In reply to: [Woo Shop Slider Lite] Straight Gallery Not Immediately ResponsiveHi,
First, sorry for such slow response. I don’t get almost any support request and that is why I don’t check this often. Also, I can’t setup email notifications for new issues, it seems like some bug on wp.org
About your issue. I see it is resolved as it now behaves normal. Was it conflict with some plugin? Custom css or js or theme?
Thank you for using this slider. I’m setting this issue as resolved.
Best regards
Forum: Plugins
In reply to: [Woo Shop Slider Lite] No Products FoundHi, it seems to me that you are posting to a different plugin. You need to post your problem to WPB WooCommerce Products Slider plugin support page.
Best regards ??
Forum: Reviews
In reply to: [Woo Shop Slider Lite] Works well, but settings do not work under PHP7.2Hi, thanks for submitting an error. It is now fixed in new plugin version 1.2.2.
Best regards
Forum: Plugins
In reply to: [Woo Shop Slider Lite] PHP7.2 compatibilityHi, thanks for submitting an error. It is now fixed in new plugin version 1.2.2. Please update the plugin.
Best regards
Forum: Plugins
In reply to: [Woo Shop Slider Lite] Wooslider loading after the page contentHi,
I assumed that something else is a problem as link you provided didn’t have Wooslider demo. But I’m glad you solved the problem.
Best regards
Forum: Plugins
In reply to: [Woo Shop Slider Lite] Wooslider loading after the page contentHi,
Thanks for using Wooslider.
The slider loads when the whole page is loaded including styles, images and other resources. The slider need to be loaded at this point when other elements are set so the Swiper slider (which is used for Wooslider) can work properly.
You should consider using a loader for your site if you want to hide this behavior, or if you have some programming experience, override script for the slider version and make it to use document ready event. But, yes you need to write some code to avoid overwriting changes when plugin updates. You can also skip loader and fade in all your content on JavaScript window load event.
From our experience and other users experience (in combination with visual composer usage) the window load event proved the best solution.
Best regards,
AleksandarForum: Plugins
In reply to: [Woo Shop Slider Lite] Which sliders in free version?I know ?? Sorry again.
I subscribed to notification now.
Forum: Plugins
In reply to: [Woo Shop Slider Lite] Which sliders in free version?Hi,
Sorry for so much late response.
The free version have only “Straight” slider version Demo
Best regards
Forum: Plugins
In reply to: [Woo Shop Slider Lite] How do you add a slider to a Widget?Hi,
Sorry for so much late response. I did’t get notification about this topic.
You can add shortcode in text widget and place it in any sidebar area.
To enable shortcodes in text widget add this to your theme functions.php file:
// Enable shortcodes in text widgets
add_filter(‘widget_text’,’do_shortcode’);You can also put this code in your PHP file:
<?php echo do_shortcode( ‘[shindiri-woo-slider id=”YOUR-SLIDER-ID”]’ ); ?>Best regards,
Aleksandar