Hi, I’m need assistance with moving the product description below the Add To Cart button.
Any assistance would be awesome!
Here’s my product.template.liquid code:
{%- unless thumbnail_position -%}
{%- assign thumbnail_position = ‘beside’ -%}
{%- endunless -%}
{%- unless description_style -%}
{%- assign description_style = ‘full’ -%}
{%- endunless -%}
{%- assign product_img_structure = product.featured_media | img_url: ‘1x1’ | replace: ‘1x1.', '{width}x.’ -%}
{%- include ‘product-template-variables’ -%}
{%- if settings.vendor_enable -%}
{%- if isModal -%}
{{ product.title }}
{% else %}{{ product.title }}
{%- endif -%} {%- unless description_style == 'full' -%}{%- if settings.enable_product_reviews and settings.reviews_layout == ‘full’ -%}
{%- if isModal -%}
{%- assign review_link = product.url | within: collection | append: ‘#Reviews-’ | append: product.id -%}
{% else %}
{%- assign review_link = ‘#Reviews-’ | append: product.id -%}
{%- endif -%}
{%- endif -%}
{%- if settings.sku_enable -%}
{%- if current_variant.sku -%} {{ current_variant.sku }} {%- endif -%}
{%- endif -%}{%- assign hide_sale_price = true -%}
{%- if product.compare_at_price_max > product.price -%}
{%- if current_variant.compare_at_price > current_variant.price -%}
{%- assign hide_sale_price = false -%}
{%- endif -%}
{{ ‘products.general.regular_price’ | t }}
{%- if current_variant.compare_at_price > current_variant.price -%}
{{ current_variant.compare_at_price | money }}
{%- endif -%}
{{ ‘products.general.sale_price’ | t }}
{% else %}
{{ ‘products.general.regular_price’ | t }}
{%- endif -%}
{{ current_variant.price | money }}
{%- if settings.product_save_amount -%}
{%- if settings.product_save_type == ‘dollar’ -%}
{% capture saved_amount %}{{ current_variant.compare_at_price | minus: current_variant.price | money }}{% endcapture %}
{%- else -%}
{% capture saved_amount %}{{ current_variant.compare_at_price | minus: current_variant.price | times: 100.0 | divided_by: current_variant.compare_at_price | round }}%{% endcapture %}
{%- endif -%}
{{ ‘products.general.save_html’ | t: saved_amount: saved_amount }}
{%- endif -%}
{{ current_variant.unit_price | money }}/{{ unit_price_base_unit }}
{%- if shop.taxes_included or shop.shipping_policy.body != blank -%}
{%- if settings.inventory_enable or settings.inventory_transfers_enable -%}
{%- assign variants_with_inventory_tracking = product.variants | where: ‘inventory_management’, ‘shopify’ -%}
{% comment %}
If loaded in quick view, it might be from a JS-loaded function
that loads recommended products. If that’s the case, the above
JS will not set the variant inventory. Add it to an accessible
data div to read later instead.
{% endcomment %}
{%- if isModal -%}
{%- unless isModal -%}
{% comment %}
Shopify’s product form attaches a number of tracking
scripts that cause slower load times and false statistics.
Quick view modals request these on-demand.
{% endcomment %}
{% include ‘product-form’, section_id: section_id %}
{%- else -%}
{%- if settings.trust_image != blank -%}
{% include ‘product-additional-content’, section_id: section_id %}
{%- endunless -%}
{%- if social -%}
{% include ‘social-sharing’, share_title: product.title, share_permalink: product.url, share_image: product %}
{%- endif -%}
{%- unless image_position == ‘left’ -%}
{%- if description_style == ‘full’ -%}
{% include ‘product-additional-content’, section_id: section_id %}
{%- endif -%}