Santosh Padire
Forum Replies Created
-
Changing the layouts is one option and also consider floating left/right options (or) try to have low width ads in the FAB
Resolved
Add this code in FAB_share_init(),FAB_Float_Load() functions at begining
Code:
if (strpos( $_SERVER[‘HTTP_USER_AGENT’] , ‘iPhone’) )
return;
if (strpos( $_SERVER[‘HTTP_USER_AGENT’] , ‘iPad’) )
return;
if (strpos( $_SERVER[‘HTTP_USER_AGENT’] , ‘iPod’) )
return;
if (strpos( $_SERVER[‘HTTP_USER_AGENT’] , ‘Nokia’) )
return;
if (strpos( $_SERVER[‘HTTP_USER_AGENT’] , ‘Opera Mini’) )
return;
if (strpos( $_SERVER[‘HTTP_USER_AGENT’] , ‘Opera Mobi’) )
return;
if (strpos( $_SERVER[‘HTTP_USER_AGENT’] , ‘SonyEricsson’) )
return;
if (strpos( $_SERVER[‘HTTP_USER_AGENT’] , ‘BlackBerry’) )
return;
if (strpos( $_SERVER[‘HTTP_USER_AGENT’] , ‘Mobile Safari’) )
return;
include the mobiles and browsers for which you don’t want to display adsense bar.Add this code in FAB_share_init(),FAB_Float_Load() functions at begining
Code:
if (strpos( $_SERVER[‘HTTP_USER_AGENT’] , ‘iPhone’) )
return;
if (strpos( $_SERVER[‘HTTP_USER_AGENT’] , ‘iPad’) )
return;
if (strpos( $_SERVER[‘HTTP_USER_AGENT’] , ‘iPod’) )
return;
if (strpos( $_SERVER[‘HTTP_USER_AGENT’] , ‘Nokia’) )
return;
if (strpos( $_SERVER[‘HTTP_USER_AGENT’] , ‘Opera Mini’) )
return;
if (strpos( $_SERVER[‘HTTP_USER_AGENT’] , ‘Opera Mobi’) )
return;
if (strpos( $_SERVER[‘HTTP_USER_AGENT’] , ‘SonyEricsson’) )
return;
if (strpos( $_SERVER[‘HTTP_USER_AGENT’] , ‘BlackBerry’) )
return;
if (strpos( $_SERVER[‘HTTP_USER_AGENT’] , ‘Mobile Safari’) )
return;
include the mobiles and browsers for which you don’t want to display adsense bar.