How to insert payments logo opencart footer

1k Views Asked by At

How can I insert payments logos in the footer for opencart 3.X?

enter image description here

3

There are 3 best solutions below

0
Mujahid Bhoraniya On BEST ANSWER

you can Edit Footer Template file : catalog\view\theme\default\template\common\footer.twig

Replace

<p>{{ powered }}</p>

to

<p>{{ powered }}<img src="/image/yourimage path/yourimagename.png"
width="500" height="50" class="img-responsive" alt="Payment"
style="float:right"></p>

I think it will be working fine.

3
Dave On

Edit footer template file catalog/view/theme/default/template/common/footer.tpl

Change

<p><?php echo $powered; ?></p>

to

<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>

May need to vary width\height as required

0
FR STAR On

In 3.x if you have BurnEngine installed you can change it via BurnEngine -> Theme Settings -> Payment images.

enter image description here