如何在 opencart 中显示 header.tpl 的免费送货总额
How to display free shipping total on header.tpl in opencart
我是编码新手。我想在主页上显示免运费总额 header。
转到控制器文件 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; ?>
我是编码新手。我想在主页上显示免运费总额 header。
转到控制器文件 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; ?>