Hi, I have applied the BUY X GET Y discount - it looks like it’s working.
However, this discount is not showing under/near the product when customers land on the product page. At this point, customers are not aware of this discount unless they add the product in the cart.
Can anyone help me with this? I need the discount to be shown.
Thanks.
Hi @ManuelFenech
Please share your store url and password if enable
Thanks
Hi,
Shopify discounts are shown only on cart and checkout page. They don’t show on product page
Thanks!
That’s too bad! I thought I was doing something wrong.
Hi,
As mentioned before, yes, that won`t be possible to do with standard Shopify tools, yet you can add a bit of code to the product-template.liquid to show this text.
Go to Online Shop → Themes → Edit Code. Search for product-template.liquid. Click Ctrl+F and search for product.decription. There should be two of those. Paste code shown below to the next line just after the {{product.description}} (or above, if you like it).
Something like this will do:
{% if product.tags contains 'buy1get1offer' %}
<p> Your offer text </p>
{% endif %}
You would need to add the tags beforehand, to the products you want this offer to be show in. Change buy1get1offer to the tag you applied and insert the text you want to show within
and
.
Let me know if this solution helps.