Plugin Author
swte
(@swte)
WP Touch has difficulty with all caching plugins https://support.wptouch.com/support/solutions/articles/5000537668-configuring-cache-plugins-for-wptouch
Got to settings > caching > general – ensure that you uncheck “enable mobile device support”. If you continue to have problems, you will need to give us a link to your site to have a look.
Thread Starter
Damir
(@pevoje)
Sadly, I’m still having issues with this, so disabling the caching on mobile didn’t work.
Where can I send you my website url (and wp credentials if needed)?
Thanks
You can give your website link here so we can take a look.
Thread Starter
Damir
(@pevoje)
As per instructions from here and WPTouch pro, I tried adding user agents so I can make WP Touch Pro work, but sadly it didn’t work.
I added them to 1 field, and like this as well but nothing worked.
I wouldn’t like to leave my URL public here so I sent a request over your website as well.
Plugin Author
swte
(@swte)
You can exclude them with a regexp as well, just put a leading/trailing #
Alternatively you can enable Mobile Device Support, and add the following snippet to child theme’s functions.php
add_action(‘init’, function(){
if (wp_is_mobile()){
define(‘SWIFT_PERFORMANCE_DISABLE_CACHE’, true);
}
});