1

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

enter image description here

Nino Filiu
  • 16,660
  • 11
  • 54
  • 84

3 Answers3

0

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

Dave
  • 51
  • 3
0

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.

Mujahid Bhoraniya
  • 1,518
  • 10
  • 22
0

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

enter image description here

FR STAR
  • 662
  • 4
  • 24
  • 50