Hi there - I have a question for the community.
I have form on my product page that allows people to request customization of a product. See dropdown form circled in yellow here:
Here is the URL: https://www.edelweissjewelry.com/products/custom-emerald-dome-ring
I would like to hide this form block on all products tagged with “custom.” Can someone help me with the code I need to add to product-template to achieve this?
Here is the code for showing the form in my product-template:
{% if settings.variant_style == ‘listed’ and settings.swatch_enabled and option.name == settings.swatch_option_name %}
{% capture variant_option_title %}option{{ forloop.index }}{% endcapture %}
{{ current_variant[variant_option_title] }}
{% endif %}
<select
id=“SingleOptionSelector-{{ forloop.index0 }}”
data-single-option-selector
data-index=“option{{ option.position }}”
{% if settings.variant_style == ‘listed’ %}data-listed{% endif %}
{% if settings.swatch_enabled and option.name == settings.swatch_option_name %}data-colour-swatch=“true”{% endif %}>
{% for value in option.values %}
