Page 1 of 1

Add bank offers on every product page like Amazon opencart 3.3.0.3

Posted: Sun Sep 27, 2020 7:40 pm
by ahimanshu
Hello, i was updates html code in public_html/catalog/view/theme/your theme/template/product/product.twig

Code: Select all

<h3>Top Offers</h3>
            <p class="offers-line"><i class="fa fa-tag"></i>&nbsp;10% Off on all State Bank Cards minimum purchase value Rs.5000/- Maximum discount Rs.1500/-</p>
same was updates and visible on desktop product pages https://www.patoys.in/ride-on-toys/ride ... years.html when i am open above website link on mobile the same offer could not show .... any suggestion?

Re: Add bank offers on every product page like Amazon opencart 3.3.0.3

Posted: Sun Sep 27, 2020 8:42 pm
by by mona
The whole section is hidden on a mobile

Code: Select all

<div class="product-left-title hidden-xs">
you have to move it to be before

Code: Select all

<div id="product"> {% if options %}
            <hr>
            <h3>{{ text_option }}</h3>

Re: Add bank offers on every product page like Amazon opencart 3.3.0.3

Posted: Mon Sep 28, 2020 1:22 pm
by cedcommerceteam
Hello,

Hope you are doing well.

You can see there is hidden-xs on mobile devices which lead to not display it on mobile devices either make it out of this div or make that visible for small devices too that will work .

Thanks!!!