我想把一些模块分配到K2的category page换句话说,我想将K2类别页面的模块更改为我想要的模块。我该怎么做呢?
在你的项目中找出这个文件路径组件模板 com_k2 category.php违约然后将代码与模块名
放在一起jimport('joomla.application.module.helper');
// this is where you want to load your module position
$modules = JModuleHelper::getModules('header');
foreach($modules as $module)
{
echo JModuleHelper::renderModule($module);
}
注意:请让模块在所有页面可见