Opencart主题标题中的错误

时间:2014-03-12 11:24:02

标签: header themes opencart

我正在为opencart使用ancart模板。显示这些错误

Notice: Undefined variable: small_html in /home/rythm321/public_html/catalog/view/theme/ancart/template/common/header.tpl on line 113
Notice: Undefined variable: org_html in /home/rythm321/public_html/catalog/view/theme/ancart/template/common/header.tpl on line 137

这是头文件https://www.dropbox.com/s/7heyayzwoewjmqt/header.tpl

2 个答案:

答案 0 :(得分:0)

变化:

if ($categories) {
   $org_html = "";
   $small_html = "";

要:

$org_html = "";
$small_html = "";
if ($categories) {

由于变量是在if条件中定义的,如果if条件返回false,它们将不会被定义。

度过美好的一天!!

答案 1 :(得分:-1)

您应该从类别编辑菜单中选择“在顶层菜单中显示”。