- Please go to your Shopify admin -> Online store --> Themes --> Actions--> Edit code
- Enter the liquid file that contains your product form (in most cases it is called product-template.liquid).
- Enter this script after your buttons' script (change bold parts to matching titles)⬇️
{% if product.title contains "eGIFT PRODUCT TITLE" %}
<style> .gwbutton {display: inline !important} </style>
{%else%}
{% if product.title contains "GIFT CARD TITLE" %}
<style> .gwbutton {display: inline !important} </style>
{%endif%}
{%else%}
<style> .gwbutton {display: none !important} </style>
{%endif%}
If you would like to place the button on a specific collection place this code on your product page (replace the "collection name" with the desired collection):
{% if collection.title contains "COLLECTION TITLE" %}
<style> .gwbutton {display: none !important} </style>
{% else %}
<style> .gwbutton {display:inline !important}</style>
{% endif %}

Related articles:
Got more questions or any feature ideas?
Feel free to contact us through the chat box or mail to Rise Support.