Skip to main content
Catalogue Notes

Display manufacturer fitment and product notes on your product details page.

Updated over a week ago

Some parts will have additional notes provided by the manufacturer, relating to specific vehicle fitments or potential issues a customer should be aware of.

You can display these notes on your Shopify product details page by including this snippet.

Create a new file in your snippets directory called partbot-catalogue-notes.liquid

{%- if product.selected_or_first_available_variant.metafields.partbot.catalogue_notes -%}
<section class="partbot-catalogue-notes">
<div>
{{ product.selected_or_first_available_variant.metafields.partbot.catalogue_notes }}
</div>
</section>
{%- endif -%}

Include the snippet in your product details page (either in the template or section, typically something similar to sections/main-product.liquid) like so:

{% render 'partbot-catalogue-notes' %}

We suggest styling this snippet to stand out using a brighter colour, or a warning symbol, to bring your customer's attention to the note.

Did this answer your question?