我需要放置" Jshopping类别"产品页面底部的模块。 在主页面上,该模块位于位置-22和#39; 。 我尝试使用此代码:
$modules =JModuleHelper::getModules('position-22');
foreach ($modules as $module){
echo JModuleHelper::renderModule($module);
}
但是没有效果。 而且,如果我使用此代码:
$document = JFactory::getDocument();
$renderer = $document->loadRenderer('module');
$options = array('style' => 'raw');
$dbo = JFactory::getDBO();
$dbo->setQuery("SELECT * FROM #__modules WHERE id='91' ");
$module = $dbo->loadObject();
$module->params = "heading=2\nlimit=10";
echo $renderer->render($module, $options);
我只获得了类别标题但没有图像。
我在Joomla 3.4中使用JoomShopping组件。
我也在考虑使用"加载模块"插入。但是我如何使用" {loadposition position-22}"来放置我的自定义HTML。在我的页面模板中?