Hi everyone,
I am trying to move those photos to be under the main one and make a slider of them. I’ve attached these photos for further description.
BEFORE
AFTER
I also have the product.liquid code here
{% assign current_variant = product.selected_or_first_available_variant %}
{% assign enable_zoom = true %}
{% assign product_img_size = settings.img_size_product %}
{% include 'breadcrumb' %}
{% for image in product.images %}
{% endfor %}
####
{{ product.title }}
{% if product.selected_or_first_available_variant.price < product.selected_or_first_available_variant.compare_at_price %}
{{ product.selected_or_first_available_variant.compare_at_price | money }}
{{ product.selected_or_first_available_variant.price | money }}
{% else %}
{{ product.selected_or_first_available_variant.price | money }}
{% endif %}
{{ product.content | split:"[video]" | first | strip_html | truncatewords:20 }}.
{% if settings.product_vendor_enable %}
{{ 'products.product.brand' | t }}: {{ product.vendor }}
{% endif %}
{{ 'products.product.tags' | t }}:
{% for tag in product.tags %}
{% unless tag contains '_' %}
{{ tag }}
{% unless forloop.last %}, {% endunless %}
{% endunless %}
{% endfor %}
#####
{{ 'products.product.description' | t }}
{{ product.description | split:"[video]" | first }}
{% if settings.show_third_tab %}
#####
{{ settings.third_tab_title }}
{{ settings.third_tab_text }}
{% endif %}
{% if settings.product_reviews_enable %}
#####
{{ 'products.product.reviews' | t }}
{% include 'product-review' %}
{% endif %}
{% include 'related-products' %}
{{ 'option_selection.js' | shopify_asset_url | script_tag }}
Thanks you for helping!


