我的模板中有自定义页脚模块。我也在位置内容底部使用推荐模块。我正在尝试在自定义页脚中显示推荐。
为此,我只需复制 testimonial.tpl 和 testimonial.php 内容并粘贴到 customfooter.tpl 和 customfooter.php
在此之后我收到错误说明
undefined variable and class name already assigned error
你知道怎么做吗?
请定义变量。
你怎么定义我会告诉你的。
目录 > 控制器 > header.php
对于静态变量
$this->load->language('common/header');
$data['text_home'] = $this->language->get('text_home');
// 语言文件在哪里为这个变量分配不同的语言文件夹
$data['text_home'] = $this->url->link('information/contact');
并且您可以在使用此变量时使用 tpl 文件。
<?php echo $text_home; ?>
确保 100% 错误没有面临
对于动态变量