Tommy
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Fastest Cache - WordPress Cache Plugin] Cached pages cache-control headerNginx Config.
location ~ \.(html|htm|rtf|rtx|txt|xsd|xsl|xml)$ {
etag on;
if_modified_since exact;
add_header Pragma “no-cache”;
add_header Cache-Control “max-age=0, private, no-store, no-cache, must-revalidate”;
try_files $uri $uri/ /index.php?$args;
}I tested on a new install and it look like WordPress is removing this header.
Forum: Plugins
In reply to: [WP Fastest Cache - WordPress Cache Plugin] Cached pages cache-control headerSame issue, the only fix I have found is to add: cache-control: no-cache, must-revalidate, max-age=0 header to the pages.
But it look like I can’t add it anymore
Forum: Plugins
In reply to: [WP Fastest Cache - WordPress Cache Plugin] Cached pages cache-control headerYes I enabled this option and I’m using Cloudflare but Cloudflare doesn’t cache HTML.
When someone login they have to refresh the page to see the uncached pages.
Forum: Plugins
In reply to: [WP Fastest Cache - WordPress Cache Plugin] Cached pages cache-control headerWell currently when someone is clicking on a cached post and then decide to login, the post is still showing like the user is logged out. (cached version)
This is why I added the cache-control: no-cache for html on my site, but this header no longer work.
Forum: Plugins
In reply to: [W3 Total Cache] Console errorsI enabled the CDN in the past but it is currently disabled and set to StackPath by default.
“Only Purge CDN manually” is disabled.
Forum: Plugins
In reply to: [Lightbox with PhotoSwipe] Transient in wp_optionsOk thanks for the explanation, I think wp cron is running properly but I have a lot of image on my site that’s why there was so many expired transients.
Forum: Plugins
In reply to: [Lightbox with PhotoSwipe] Transient in wp_optionsIs it possible to store them in a different table? my wp_options table was 10 pages long but now it’s 450 pages. Might be caused by WP 6.0 or a new plugin version because I never noticed this before.
Forum: Plugins
In reply to: [Recent Posts Widget Extended] CSS not editable in version 2.0@satrya The new
display: inline-blockcss make my widget look like a mess.I have to add this to fix it
.rpwe-block li { display: list-item!important; }The !important property from the default css still make it impossible to edit some borders colors, when I uncheck “Use Default Styles” it is still in use and everything looks broken.
Forum: Plugins
In reply to: [Recent Posts Widget Extended] CSS not editable in version 2.0Yes I added custom CSS before the update but after the update the widget looked bugged so I removed it and added it again but now I can’t add any CSS. The plugin !important property overwrite my custom CSS added to my theme.
- This reply was modified 3 years, 7 months ago by Tommy.
Forum: Plugins
In reply to: [Lightbox with PhotoSwipe] Fullscreen button not working v5I’m using the latest iOS version 15.6, both link are not are not working either.
Thanks for the update, at least it’s now like v4.
Forum: Plugins
In reply to: [Lightbox with PhotoSwipe] Fullscreen button not working v5With V4 there is no full screen button at all on iOS.
Forum: Plugins
In reply to: [Lightbox with PhotoSwipe] Fullscreen button not working v5Same issue on your website, when you press on the button nothing happen.
Forum: Plugins
In reply to: [Lightbox with PhotoSwipe] Video supportThe idea makes sense for me.
I did not know it was to much work to implement.
Forum: Plugins
In reply to: [Lightbox with PhotoSwipe] Video supportI mean videos that are looped without controls, it is often used to replace gif as mp4 files are way smaller than gifs. Gutenberg have the options to do this with any videos.
Example:
https://www.dannyguo.com/blog/serve-videos-instead-of-gifs/#serving-videosThe website GYPHY is also using this instead of real gif.
Personally it will allow me to embed more content in my post since they are way smaller and I think it will just be perfect if we could swipe between these videos in the Lightbox just like they are real GIFS.
Forum: Plugins
In reply to: [WP Fastest Cache - WordPress Cache Plugin] Unknown error configuring CDNThe issue was caused by my CDN provider (Bunny.net), there is an option call “Block Root Path Access”
This option is blocking the plugin during the configuration and it should be disabled when configuring the plugin. It can be enabled once the plugin is configured.Sorry for the confusion, your plugin is actually working.