Add Media Gallery to Shopify Vintage Themes

Instructions on how to set up the media gallery widget on vintage Shopify themes.

If you need any help setting up widgets on vintage themes let us know and we would be happy to help!

Prerequisites

This tutorial assumes that you've already completed the initial Recenio widget setup.

Media gallery widget setup

  • Open your Shopify Admin and navigate to your online store themes. Select a theme where you want to add the media gallery widget, click on the actions menu and select 'Edit code'.

  • Create a new snippet in the Snippets folder named recenio-media-gallery-widget.liquid

  • Paste the following code inside the recenio-media-gallery-widget.liquid snippet.
{%- comment -%}
  Settings:

  Top Padding
  Description: widget top padding in px
  Values: between 0 and 50

  Bottom Padding
  Description: widget bottom padding in px
  Values: between 0 and 50

  Initial Size
  Description: how much media to initially display
  Values: between 3 and 10

  Page Size
  Description: how much media to additionally load on request
  Values: between 3 and 10

{%- endcomment -%}

{% if product != blank %}
    {% capture product_id %} data-product-id="{{ product.id }}"{% endcapture %}
    {% capture product_metadata %}
        <script type="application/json" data-product-metadata>{{ product.metafields.recenio.metadata }}</script>
    {% endcapture %}
{% endif %}

{% capture settings %}
    data-top-padding="20"
    data-bottom-padding="20"
    data-initial-size="3"
    data-page-size="3"
{% endcapture %}

<div class="recenio-media-gallery" {{ settings }} {{ product_id }} >{{ product_metadata }}</div>
  • Now you can use the following snippet to place the media gallery widget wherever you want in your theme.
{% render 'recenio-media-gallery-widget' %}
  • If you would like to show media from a specific product instead of all products, use the following snippet instead.
{% render 'recenio-media-gallery-widget', product: product %}

Still need help? Contact Us Contact Us