如何在opencart 3.X的页脚中插入付款徽标?
答案 0 :(得分:1)
您可以编辑页脚模板文件:catalog \ view \ theme \ default \ template \ common \ footer.twig
替换
<p>{{ powered }}</p>
到
<p>{{ powered }}<img src="/image/yourimage path/yourimagename.png"
width="500" height="50" class="img-responsive" alt="Payment"
style="float:right"></p>
我认为它将运行正常。
答案 1 :(得分:0)
编辑页脚模板文件目录/视图/主题/默认/模板/公共/footer.tpl
更改
<p><?php echo $powered; ?></p>
到
<p><?php echo $powered; ?></font><img src="/image/yourimage path/yourimagename.png" width="480" height="40" class="img-responsive" alt="payment methods" style="float:right"></p>
可能需要根据需要更改宽度\高度
答案 2 :(得分:0)