- From Shopify's admin, select Online Store, then Actions > Edit code.
- Under "Snippets", select boldoptions.liquid.
- Find this line pf code, it should appear twice, near lines 51 & 67:
{% if p.first == "builder_id" or p.first == "builder_info" or p.first == "master_builder" or p.last == "" %}
- Add this code before the %} in both locations:
or p.first == "frequency_type" or p.first == "frequency_num" or p.first == "frequency_type_text" or p.first == "group_id" or p.first == "discounted_price"
The result should look like this:
{% if p.first == "builder_id" or p.first == "builder_info" or p.first == "master_builder" or p.last == "" or p.last == "" or p.first == "frequency_type" or p.first == "frequency_num" or p.first == "frequency_type_text" or p.first == "group_id" or p.first == "discounted_price" %}
- Select Save.