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
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);