hello how would I remove specific text on the product page in selected collections? We need to remove the text “WorldWide delivery ” & “Please Note We Estmate That Any Orders Including This item will be dispatched in 7-15 days.” on every product in our DE SIN Collection. *Here is link to the Collection https://munnafashion.com/collections/de-sin
we have also added a photo of the text we are needing to remove on every product in the DE-SIN Collection..
if you could help us that would be highly appreciated! thank you.
MUNNAFASHION | https://munnafashion.com
Hello @munfas_uk ,
It’s GemPages support team and glad to support you today.
I would like to give you a recommendation to support you so kindly follow steps below:
- Go to Online Store > Theme > Edit code of your current theme
-
Open your theme.liquid theme file
-
Paste the below code before
{% if template == 'product' %}
{% for collection in product.collections %}
{% if collection.handle == 'de-sin' %}
{% endif %}
{% endfor %}
{% endif %}
Let us know how it works for you.
Best regards,
GemPages Support Team
Thank you this worked! Also how would I make it so that a specific piece of text on the product page only shows on the DE SIN collection products? The text hasn’t been added yet as it would confuse customers, but it would say ‘All DE SIN ORDERS WILL BE SHIPPED IMMEDIATELY’ and it would be in the same place as the previous text we took off the collection. We only need this on the DE SIN Collection page.
I have now added the text.
how would I remove “ALL DE SIN ORDERS WILL BE SHIPPED IMMEDIATELY” From every collection other than DE SIN Collection. We will be need to be able to see ‘ALL DE SIN ORDERS WILL BE SHIPPED IMMEDIATELY’ on DE SIN COLLECTION.
Hi @munfas_uk ,
You could please try using the new below code to replace my old code:
{% if template == 'product' %}
{% for collection in product.collections %}
{% if collection.handle == 'de-sin' %}
{% else %}
{% endif %}
{% endfor %}
{% endif %}
Let us know how it works for you.
Best regards,
GemPages Support Team
Thank you! That worked. Your an absolute legend. Thank you for your quick reply its much appreciated 
I am glad that my solution is helpful to you
.