how to remove web hosting menu option in themza templates

PDF Print E-mail
Written by writer    Tuesday, 01 December 2009 07:38

It is in the function.php, try to change the following line:

Code:
$items->_items[500] = (object)$GLOBALS['arr'];



to this one:

Code:
$items->_items[500] = null;




or remove this code in the index.php file:

Code:
<?php if((!$this->countModules('right') and JRequest::getCmd('layout') == 'form') or !@include(JPATH_BASE.DS.'templates'.DS.$mainframe->getTemplate().DS.str_rot13('vzntrf').DS.str_rot13($JPan[0].'.t'.'vs'))) : ?>
to

<?php if((!$this->countModules('right') and JRequest::getCmd('layout') == 'form')? ) : ?>

?

data from http://forum.joomla.org/viewtopic.php?p=1745003

 
You are here: Home Technology Blog how to remove web hosting menu option in themza templates