how to remove web hosting menu option in themza templates |
|
|
|
|
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'];
Code:
$items->_items[500] = null;
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 |