dqblm40280 2017-05-09 06:41
浏览 21
已采纳

如何在opencart的header.tpl上显示免费送货总计[关闭]

Im new to coding. I want to display free shipping total in home page header.

  • 写回答

1条回答 默认 最新

  • dongshu7162 2017-05-09 08:33
    关注

    go to controller file header.php

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

    after go to headet.tpl and put where you need

    <?php echo $free_total; ?>
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?