Hi, I want to ask if it is possible to add a link to a specific product to the Pop up window instead of sign emails.
Thank you so much ![]()
Hi, I want to ask if it is possible to add a link to a specific product to the Pop up window instead of sign emails.
Thank you so much ![]()
Hi @katarinah
It’s possible.
Hi @EBOOST and how can I do that?
Thank you.
Hi @EBOOST , how can I do that ?![]()
Hi @katarinah
You can replace code in popup with code below:
{% assign Pproduct = all_products['handle-product'] %}
{% if Pproduct.featured_media %}
{% endif %}
## {{ Pproduct.title}}
Replace ‘handle-product’ with your handle product that you would like to show.
Ex: My product handle is test

code will show like this one
{% assign Pproduct = all_products['test'] %}
{% if Pproduct.featured_media %}
{% endif %}
## {{ Pproduct.title}}
​