我正在使用Opencart的自定义页面扩展程序 http://www.opencart.com/index.php?route=extension/extension/info&extension_id=20816&filter_search=page&page=2
但问题是当我尝试在页面上放置模块时它没有显示出来。
模板文件看起来完好无损,我已粘贴下面的代码
<?php
class ControllerCustomHelloWorld extends Controller
{
public function index(){
// VARS
$this->language->load('custom/helloworld');
$this->data['breadcrumbs'] = array();
// set title of the page
$this->document->setTitle("Register on AutoHouse Express");
$this->data['heading_title'] = $this->language->get('heading_title');
$this->data['button_continue'] = $this->language->get('button_continue');
$this->data['description'] = '';
$this->data['continue'] = $this->url->link('common/home');
$template=$this->config->get('config_template') ."/template/custom/hello.tpl"; // .tpl location and file
$this->load->model('custom/hello');
$this->template = ''.$template.'';
$this->children = array(
'common/column_left',
'common/column_right',
'common/content_top',
'common/content_bottom',
'common/footer',
'common/header'
);
$this->response->setOutput($this->render());
}
}
?>
但由于某种原因,该页面不接受任何位置的模块。
我很感激你的帮助。
感谢。
答案 0 :(得分:2)
确保在为此页面创建布局时输入了正确的路线。
创建布局:
1.转到系统&gt;设计&gt;布局
2.单击“插入布局”
3.输入布局名称并使用route作为custom / helloworld
4.保存它
5.现在在模块管理面板中的布局选项中选择此页面,您希望在此新自定义页面上显示该页面。