Clean and interactive modal for displaying author biographies on Shopify product pages.
- Create a Metafield (Reference)
custom.author_reference. - Ensure the referenced object has:
full_name(Text)photo(File/Image)biography(Rich text)
- Add
product-author-modal.liquidto your Snippets. - Render it in
sections/main-product.liquid:
{%- when 'author_profile' -%}
{% render 'product-author-modal',
block: block,
author: product.metafields.custom.author_reference.value
%}