嗨我想只在virtmart的首页上显示模块,而不想在内页上使用该模块。我有搜索这个,但没有得到任何东西。
我尝试使用此代码但不起作用。
<?php if (JRequest::getVar('view')=='productdetails') { ?>
<div id="productmod"><jdoc:include type="modules" name="productdetails" /></div>
<?php } ?>
任何人都可以帮我解决这个问题
提前致谢..
答案 0 :(得分:0)
查看答案,然后var_dump
$menuList
获取所有菜单,然后获取特定菜单并应用您的条件。
// Get default menu - JMenu object, look at JMenu api docs
$menu = JFactory::getApplication()->getMenu();
// Get menu items - array with menu items
$menuList = $menu->getMenu();
// Look through the menu structure, once you understand it
// do a loop and find the link that you need.
var_dump($menuList);