Hi. I added a featured collection on one of my pages but it seems to now come up on all of them? How do I remove it on the other pages without removing it from the page I want? If I delete it on one pages it deletes it on all. I’m using the Craft theme.
I added in the customizer area
Hi @ligumafrica ,
You can add tag to your page from admin and check existing of tag in code like below.
{% for tag in product.tags %}
{% if tag == "featuredproduct" %}
// Enter for featured collection code
{% endif %}
{% endfor %}
I will able to help more precisely add me as collaborator.
hello, Ligumafrica
the issue probably is that all your pages have the same template. When you do something in the customizer, it is applied to the template, so, it is applied to all the pages that use the same template. Try creating a different template for this page that you want different. You can create new templates from the theme customizer