是否可以在OpenCart echo
上使用footer.tpl
电话号码?
我在页脚上使用了<?php echo $telephone; ?>
,但显示错误Notice: Undefined index...
。
答案 0 :(得分:2)
我找到了解决方案,打开`
catalog / controller / common / footer.php`
$data['telephone'] = $this->config->get('config_telephone'); $data['text_newsletter'] = $this->language->get('text_newsletter');
<?php echo $telephone; ?>
上的 footer.tpl
答案 1 :(得分:1)
您可以使用以下方式直接在tpl中显示:
echo $this->config->get('config_telephone');