我需要显示我的模板联系我们页面而不是默认联系我们页面。如何获取我的模板链接请联系我们页面。
在目录 - >信息下,我找不到我的模板联系我们页面,但在我的模板文件夹中,我有联系我们页面(contact.tpl)和信息文件夹。
答案 0 :(得分:0)
在catalog/controller/information/contact.php
中,您可以找到选择模板文件的代码,如下所示:
//condition checks whether the current theme has got a template file for contact.
if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/information/contact.tpl')) {
$this->template = $this->config->get('config_template') . '/template/information/contact.tpl';
} else { // fall back to default contact template if current theme doesn't have a template file for contact
$this->template = 'default/template/information/contact.tpl';
}
如果新主题的文件存在,请检查文件权限。
度过美好的一天!!
答案 1 :(得分:0)
我通过更新联系我们页面的布局得到了输出,并附加了我需要在联系页面布局中显示的模块(左列)。