Limited Support
Our team is currently on holiday, so support will be limited during this period. Response times may be slower than usual, and some inquiries may be delayed.
We appreciate your patience and understanding, and we’ll resume our usual support by the end of August.
Dear Forum,
I have 2 questions :Â
First : Is it possible to hide wpd-bubble on mobile devices and How can i do it ?
Second : To get better pagespeed score on mobile, can i remove wpdiscuz on this device ?
Thanks
Hi @casadeltravel,Â
You should use the is_load_wpdiscuz hook and remove the comments on mobile devices.Â
Sample code please on how to do this? I have been trying this but it's not working:
add_filter('is_load_wpdiscuz', function ($isLoad, $post) {
if (wp_is_mobile()) {
return false;
}
return $isLoad;
}, 10,2);