如何将模块添加到自定义 Opencart 页面
How to add modules to custom Opencart page
我正在使用 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());
}
}
?>
但由于某种原因,该页面不接受任何位置的模块。
我将不胜感激。
谢谢。
确保您在为此页面创建布局时输入了正确的路线。
创建布局:
1. 转到系统>设计>布局
2. 点击"Insert layout"
3. 输入布局名称并使用路由作为 custom/helloworld
4.保存
5. 现在 select 模块管理面板中布局选项中的此页面,您希望在这个新自定义页面上显示。
我正在使用 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());
}
}
?>
但由于某种原因,该页面不接受任何位置的模块。
我将不胜感激。
谢谢。
确保您在为此页面创建布局时输入了正确的路线。
创建布局:
1. 转到系统>设计>布局
2. 点击"Insert layout"
3. 输入布局名称并使用路由作为 custom/helloworld
4.保存
5. 现在 select 模块管理面板中布局选项中的此页面,您希望在这个新自定义页面上显示。