Regarding menu they are hard coded in following file / code. But if you disable any modules in modules positions "lang,cart,login" they should disappear automatically.
File:
Lines: 60 to 78
- Code: Select all
<?php if($this->API->modules('login + cart + lang') || ($this->API->get('register_link', 1) && $userID == 0)) : ?>
<div id="gkTopLinks">
<?php if($this->API->modules('lang')) : ?>
<jdoc:include type="modules" name="lang" style="<?php echo $this->module_styles['footer_nav']; ?>" />
<?php endif; ?>
<?php if($this->API->modules('cart')) : ?>
<a href="index.php?option=com_virtuemart&view=cart" id="btnCart"><?php echo JText::_('TPL_GK_LANG_MY_CART'); ?><span><?php echo JText::_('TPL_GK_LANG_MY_CART_LOADING'); ?></span></a>
<?php endif; ?>
<?php if($this->API->get('register_link', 1) && $userID == 0) : ?>
<a href="<?php echo $this->API->URLbase(); ?>index.php?option=com_users&view=registration" id="btnRegister"><?php echo JText::_('TPL_GK_LANG_REGISTER'); ?></a>
<?php endif; ?>
<?php if($this->API->modules('login')) : ?>
<a href="<?php echo $this->API->URLbase(); ?>index.php?option=com_users&view=login" id="btnLogin"><?php echo $btn_login_text; ?></a>
<?php endif; ?>
</div>
<?php endif; ?>
Regarding blank page;
Please rename following folder so joomla and virtuemart can load its own default style just to be sure it is not related with our custom style.
Rename:
- Code: Select all
/templates/gk_bikestore/html/com_virtuemart/
To
- Code: Select all
/templates/gk_bikestore/html/com_virtuemart_testing/
Also disable modules such as News Show PRO or Image Show GK4 if they are enabled for test purposes.
Let us know how you get on.