I am using http://mobiledetect.net/ to show something only on Desktop. for that I am using this code:
<?php
include 'Mobile_Detect.php';
$detect = new Mobile_Detect();
// Some Code Here
if ( !$detect -> isMobile() && !$detect -> isTablet() && !$detect -> isiOS() && !$detect -> isAndroidOS() ) {
echo 'SomeThing';
}
?>
The problem is that when I'm using desktop everything is fine and I get the text. But on mobile, the first time I visit the page I SEE the text and then when I reload it, I don't. How can I fix this problem?