Does anyone know how to completely disable Dojo Supersized background in all mobile formats?

Permalink
I can't seem to get a response from the addon developer. I need to find a way to disable it in all responsive/mobile sizez. CSS doesn't do the trick completely because it does not prevent it from trying to load and it seems to enlarge it to a width beyond the set mobile width max. Make sense? This is the website in development that needs it disabled. http://www.barkingtuna.com/ryden...

barkingtuna
 
enlil replied on at Permalink Reply
enlil
From the page type level you could do something like this to hide a global area when a mobile device is detected:

<?php Loader::library('3rdparty/mobile_detect');
$page = Page::getCurrentPage();
$detect = new mobile_detect();
if ($page->isEditMode()){
?><div class="class-editmode"><?php
} else { ?><div class="class"><?php
}
if($detect->isMobile() == true) {
} else {
$a = newGlobalArea('Dojo Supersize');
$a->display();
?>
</div>