我正在尝试在joomla 3 S5顶点框架的菜单右侧添加新的模块位置。我已经这样做了。在index.php中添加了
<div id = "s5_newmodule">
<?php s5_module_call('s5_newmodule ' . ' notitle'): ?> </div>
在template.css中
#s5_newmodule {
position:absolute;
margin-left:50%;
}
in templatedetails.xml
<position>s5_newmodule</position>
一切都在管理面板中工作正常。我可以找到模块并添加新模块。我已经发布了模块并在所有页面上选择它。但是当我打开它时什么都没显示。当打开时?tp = 1它显示模块位置但没有显示它的内容。我的网站是eweb.on.kg
答案 0 :(得分:0)
我有错误的间距和点。这是正确的代码。
<div id="s5_newmodule">
<?php s5_module_call('s5_newmodule','notitle'); ?> </div>
现在它工作正常。