sometimes it show on the page even when I disable "Desktop switcher"
what else i can do to switch it off for always?
<?php if($this->getParam('mobile_desktop', 0) == '1') : ?>
<a href="#" id="gk-btn-switch" ><span><?php echo JText::_('TPL_GK_LANG_GK_MOBILE_DESKTOP'); ?></span></a>
<?php endif; ?>
templates\gk_the_real_design\layouts\android.php
templates\gk_the_real_design\layouts\handheld.php.php
templates\gk_the_real_design\layouts\iphone.php
<?php if(isset($_COOKIE['gkGavernMobile'.$tpl_name]) &&
$_COOKIE['gkGavernMobile'.$tpl_name] == 'desktop') : ?>
<div class="mobileSwitch gkWrap">
<a href="javascript:jQuery.cookie('gkGavernMobile<?php echo $tpl_name ?>', 'mobile', { expires: 365});window.location.reload();"><?php echo JText::_('TPL_GK_LANG_SWITCH_TO_MOBILE'); ?></a>
</div>
<?php endif; ?>