Oct 18, 2020 6:22 pm
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
3 Replies
Oct 19, 2020 8:09 am
Hi @casadeltravel,
You should use the is_load_wpdiscuz hook and remove the comments on mobile devices.
May 03, 2021 7:19 am
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);