如何在opencart中的header.tpl上显示免费送货总数

时间:2017-05-09 06:41:40

标签: javascript php jquery opencart

我是编码新手。我想在主页标题中显示免费送货总数。

1 个答案:

答案 0 :(得分:0)

转到控制器文件header.php

if ($this->config->get('free_total')) {
 $data['free_total'] = $this->config->get('free_total');
} else {
 $data['free_total'] = false;
}

去headet.tpl后放到你需要的地方

<?php echo $free_total; ?>