Can I add a product link to the pop-up window instead of sign-up emails?

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 :slightly_smiling_face:

Hi @katarinah

It’s possible.

Hi @EBOOST and how can I do that?

Thank you.

Hi @EBOOST , how can I do that ?:slight_smile:

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

EBOOST_0-1679384202319.png

code will show like this one

{% assign Pproduct = all_products['test'] %}

    
        {% if Pproduct.featured_media %}
        
        {% endif %}
        ## {{ Pproduct.title}}
    

​