How to hide the plugin on mobile devices
-
Hi all,
I found a solution to hide the buttons on mobile devices. You need to modify the file tf_admin_page.php. Then add these lines at the end of the file under function is_mobile_device():
if (strpos( $_SERVER['HTTP_USER_AGENT'] , 'Android.*Mobile') ) return true; if (strpos( $_SERVER['HTTP_USER_AGENT'] , 'iPad.* (([3]_[2-9](_| ))|([4-9]_[0-9](_| )))') ) return true; if (strpos( $_SERVER['HTTP_USER_AGENT'] , 'iPhone.* (([3]_[2-9](_| ))|([4-9]_[0-9](_| )))') ) return true; if (strpos( $_SERVER['HTTP_USER_AGENT'] , 'Windows Phone') ) return true; if (strpos( $_SERVER['HTTP_USER_AGENT'] , 'Windows Phone OS [7-9]') ) return true;
Regards,
Andreashttps://www.ads-software.com/plugins/twitter-facebook-google-plusone-share/
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘How to hide the plugin on mobile devices’ is closed to new replies.