Mostrar precios pagina de collection

Aun nada. Hay muchos cambios de diseño. Estuve probrando y creo que el problema radica en estos codigos…

{% if sidebar %}

{% else %}
{% endif %}

{% assign collection_handles = product.collections | map: ‘handle’ %}
{% if product.featured_image.alt contains ‘youtube’ or image.alt contains ‘vimeo’ %}
{% assign alt_text = product.title %}
{% else %}
{% assign alt_text = product.featured_image.alt %}
{% endif %}

{% if settings.align_height %}
{% assign collection_height = settings.collection_height | plus: 0 %}
{% assign product_aspect_ratio = product.featured_image.aspect_ratio | plus: 0 %}
{% assign product_set_width = product_aspect_ratio | times: collection_height %}

{% if product.featured_image.width >= product.featured_image.height %}
{% assign align_height_value = ‘width: 100%; height: auto;’ %}
{% else %}
{% assign align_height_value = ‘width: 100%;’ %}
{% endif %}

{% endif %}

{{ alt_text | escape }}

{% if settings.collection_secondary_image %}
{{ alt_text | escape }}
{% endif %}

{% if settings.quick_shop_enabled %}

{{ ‘collections.general.quick_shop’ | t }}

{% endif %}

{{ product.title }}
{{ product.metafields.prod-details.sub-title }} {% if settings.enable_shopify_collection_badges %} {% endif %} {% if settings.display_vendor_collection %}
{{ product.vendor }} {% endif %}

{% unless collection_handles contains ‘coming-soon’ %}

<meta itemprop=“price” content=“{{ product.price_min | money_without_currency | remove: “,” }}” />

{% comment %}
{% if product.available %}
{% if product.price_varies and product.price_min > 0 %}
{{ ‘products.general.from’ | t }}
{% endif %}
{% if product.price_min > 0 %}
{{ product.price_min | money }}
{% else %}
{{ settings.free_price_text }}
{% endif %}
{% if product.compare_at_price_max > product.price %}

{{ product.compare_at_price_max | money }}

{% endif %}
{% else %}
{{ ‘products.product.sold_out’ | t }}
{% endif %}
{% endcomment %}

{% endunless %}

{% if settings.sale_banner_enabled and product.compare_at_price_max > product.price %}
{{ 'collections.general.sale' | t }}
{% endif %}

{% if collection_handles contains ‘new’ %}

{{ 'collections.general.new' | t }}
{% endif %} {% if collection_handles contains 'coming-soon' %}
{{ 'collections.general.coming_soon' | t }}
{% endif %} {% if collection_handles contains 'pre-order' %}
{{ 'collections.general.pre_order' | t }}
{% endif %}
{% include 'collection-swatch' %}

{% if settings.quick_shop_enabled %}
{% if product.description contains “#tab1” %}
{% assign tabs = true %}
{% else %}
{% assign tabs = false %}
{% endif %}

{% include 'product-images' with 'modal' %}

{{ product.title }}

{% if settings.enable_shopify_collection_badges %} {% endif %} {% if settings.display_vendor_collection %}

{{ product.vendor | link_to_vendor }}

{% endif %}

{% if settings.product_description_position == “top” %}
{% if settings.description_words == “none” %}
{{ product.description | split: ‘’ | first }}
{% else %}
{% if tabs %}
{{ product.description | split: ‘’ | first }}
{% else %}

{{ product.description | strip_html | truncatewords: settings.description_words }}

{% endif %} {% endif %}

{{ 'collections.general.view_product_details_html' | t }}


{% endif %}

{% assign variant = product.selected_or_first_available_variant %}

{% unless collection_handles contains ‘coming-soon’ %}

{% if variant.available == false %}{{ 'products.product.sold_out' | t }}{% endif %} {% if variant.price > 0 %} {{ variant.price | money }} {% else %} {{ settings.free_price_text }} {% endif %} {% if variant.price < variant.compare_at_price and variant.available %} {{ variant.compare_at_price | money }} {% endif %}

{% include ‘product-notify-me’ %}
{% endunless %}

{% comment %}
{% unless collection_handles contains ‘coming-soon’ %}
{% include ‘product-form’ %}
{% endunless %}
{% endcomment %}

{% unless collection_handles contains ‘coming-soon’ %}
{% unless collection_handles contains ‘line-item-gift-set-products’ or collection_handles contains ‘line-item-subscription-products’ %}
{% include ‘product-form’ %}
{% endunless %}
{% endunless %}

{% if collection_handles contains ‘line-item-gift-set-products’ %}
{% include ‘product-form-giftset’ %}
{% endif %}

{% if collection_handles contains ‘line-item-subscription-products’ %}
{% include ‘product-form-subscription’ %}
{% endif %}

{% if settings.product_description_position == “bottom” %}


{% if settings.description_words == "none" %} {{ product.description | split: '' | first }} {% else %} {% if tabs %} {{ product.description | split: '' | first }} {% else %}

{{ product.description | strip_html | truncatewords: settings.description_words }}

{% endif %} {% endif %}

{{ 'collections.general.view_product_details_html' | t }}

{% endif %}
{% endif %}