danielsolsmith
Forum Replies Created
-
Forum: Plugins
In reply to: [BP Profile Search] Fatal Error with has_capsHi, I think this issue is on my end.
The admin role had gotten corrupted during a migration. I fixed that, and the plugin is working againl Thanks for your response!Please fix on the plugin site as well.
Ah I found the link.
It’s this:https://www.myofficeguy.com/applications/creditcard/woocommerce/
Forum: Plugins
In reply to: [WP Super Cache] how to avoid cache for mobile visitorsSeems like the only way to do this is to disable cacheing for mobile browsers, which was pretty much already figured out:
https://ww.wp.xz.cn/support/topic/plugin-device-theme-switcher-wp-super-cache-support
The only thing I needed to do additionally was find the list of Mobile User Agents to Reject in Super Cache:
http://loneplacebo.com/how-to-set-up-w3-total-cache-with-wptouch-plugin-on-wordpress/
and then I added to my functions.php the following:
if ( wp_is_mobile() ) { define('DONOTCACHEPAGE', true); }let me know if you have issues, or if this works for you!