Skip to content

Adding Verify Fitment

There are two ways to do it.

a) Via the theme editor:

  1. Go to your theme editor (see how to find it)
  2. Select the “Products” template in the dropdown at the top and pick the “Default product” option
  3. Click Add section or Add block in the panel on the left
  4. Select Verify Fitment from the list of Apps

b) Manually:

  1. Go to your theme code editor (see how to find it)

  2. Select the desired product template file

  3. Choose the desired location of the Verify Fitment and paste the following code:

    {% for collection in product.collections %}
    {% assign verify_hidden = collection.metafields.convermax.hide_verify %}
    {% if verify_hidden %}
    {% break %}
    {% endif %}
    {% endfor %}
    {% unless verify_hidden or product.metafields.convermax.hide_verify %}
    <div id="cm-verify-fitment"></div>
    {% endunless %}