标签: javascript php jquery opencart
我是编码新手。我想在主页标题中显示免费送货总数。
答案 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; ?>