snipsnip
Forum Replies Created
-
Hello,
Yes, this is correct- 524 is Cloudflare error. If your process takes more than 100 seconds (1.67 Minutes) then CloudFlare throws this error.
I don’t understand why it throws the error only when the redis plugin is active and if I can tweak something to make it work. For now we are disabling the plugin manually, sending the data and then enabling it again…I managed to convert the WEBP with the PHP (not .htaccess) method.
Also, had GD installed so I used that.
Still, I had the warning in the plugin settings.
The images were converted in WEBP but didn’t test all browsers.Maybe someone from the devs will enlighten how it works on Litespeed and/or are there any specific settings we should do in order to use the .htaccess method successfully?
Forum: Plugins
In reply to: [WooCommerce Payment Gateway - Paysera] Update 2.6.6 completely broke my siteSame error, version 2.6.6
Forum: Fixing WordPress
In reply to: Is there a way to use RTL css files of my theme with LTR language?Seems like the theme have both rtl.css and style-rtl.css + their minificated versions (rtl.min.css + style-rtl.min.css).
Do you suggest to change all 4 of them?Forum: Plugins
In reply to: [Redux Framework] WeLaunch PDF catalog and ReduxHello,
Sorry for the late replay.I have made some screens of the issue + a screen when I use Latin letters:
- This reply was modified 3 years, 11 months ago by snipsnip.
Forum: Plugins
In reply to: [PhastPress] Does it optimize the lazy loaded images?The last update works !
Thank youForum: Plugins
In reply to: [PhastPress] Does it optimize the lazy loaded images?Thanks for the update!
Unfortunately, it didn’t solve my problem. I tried to turn off/on the plugin and cleared all the cache.Forum: Plugins
In reply to: [PhastPress] Scaled images problemOkay!
Maybe this code? It will remove all classes from the images:
add_filter('get_image_tag', 'strip_entire_image_class'); function strip_entire_image_class($html) { return preg_replace('/ class="(.*)"/', '', $html); }
Forum: Plugins
In reply to: [PhastPress] Scaled images problemThanks Albert!
Do you have any tips for a plugin that might do this at the moment?
I will have over 20k products and the images will be automatically imported with the API, like these. Need something that changes the src set in bulk.Forum: Plugins
In reply to: [PhastPress] Some difficulties with the optimizationNice, thank you! Seems like I was using this option in W3 total cache:
Prevent caching of objects after settings change
Whenever settings are changed, a new query string will be generated and appended to objects allowing the new policy to be applied.Now the biggest issue is to figure out how to fix the “Serve scaled images” warning.
Forum: Developing with WordPress
In reply to: Sharing external Images from WP to FB?Inferred Property
The ‘og:image’ property should be explicitly provided, even if a value can be inferred from other tags.This is what facebug sharing debugger tells me