How can I insert payments logos in the footer for opencart 3.X?
Asked
Active
Viewed 992 times
3 Answers
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
-
Why are you using tags to make the powered text white? Are you from 1997? – Paul Feakins Mar 19 '19 at 09:54
-
I think it is because is still working... https://www.w3schools.com/tags/att_font_color.asp And seems it is not prohibited.. till now. – K. B. Mar 19 '19 at 19:16
-
Why not just remove that text if you don't want it shown? – Paul Feakins Mar 20 '19 at 11:41
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.

FR STAR
- 662
- 4
- 24
- 50