If there is unformatted Recurring Orders information on the cart page, you can fix this by following these steps:
- From "Shopify Admin", select Online Store.
- Select Actions.
- Select 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.
That's it!
Next Steps:
- Add a Tooltip to Product Options
- Change the Order of Options in Product Options
- Customize the Display in Product Options