How do I remove all of this whitespace on the product page:
Product Template Liquid
{% assign product_image_size = '680x680' %}
{%- if settings.product_vendor_enable -%}
{%- endif -%}
{% comment %}
Get first variant, or deep linked one
{% endcomment %}
{% assign current_variant = product.selected_or_first_available_variant %}
{% include 'breadcrumbs' %}
{% assign featured_image = current_variant.featured_image | default: product.featured_image %}
{% if product.images.size > 1 %}
{% for image in product.images %}
{% endfor %}
{% endif %}
{% if product.images.size > 2 %}
{% comment %}
Add SVG icon snippets to an object for custom slider arrows
{% endcomment %}
{% endif %}
{% if settings.product_vendor_enable %}
{{ product.vendor }}
{% endif %}
# {{ product.title }}
*{{ product.metafields.custom.shortdescription }}*
- {{ 'products.product.on_sale' | t }}
{% if product.compare_at_price_max > product.price %}
- {{ 'products.product.regular_price' | t }}
<s>
{{ current_variant.compare_at_price | money }}
</s>
{% endif %}
- {% unless product.compare_at_price_max > product.price %}
{{ 'products.product.regular_price' | t }}
{% endunless %}
{{ current_variant.price | money }}
{% for t in product.tags %}
{% if t contains 'MIX & MATCH' %}
- [MIX & MATCH - 4 FOR 3](https://martinschocolatier.co.uk/collections/mix-and-match)
{% endif %}
{% endfor %}
{% for t in product.tags %}
{% if t contains 'eastermix' %}
- [3 FOR 2 EASTER TREATS](https://www.martinschocolatier.co.uk/collections/easter-mix-and-match)
{% endif %}
{% endfor %}
{% for t in product.tags %}
{% if t contains 'hcmix' %}
- [BUY 3 - SAVE £10 ON HOT CHOCOLATES](https://www.martinschocolatier.co.uk/collections/buy-3-save-10-on-hot-chocolates)
{% endif %}
{% endfor %}
{% for t in product.tags %}
{% if t contains 'taster' %}
- [TASTER BOXES - 2 for £18, 3 for £25](https://www.martinschocolatier.co.uk/collections/taster-boxes)
{% endif %}
{% endfor %}
{% if section.settings.stock_enable %}
- {% if current_variant.inventory_management %}
{% if current_variant.inventory_quantity < 10 and current_variant.inventory_quantity > 0 %}
{% assign qty = current_variant.inventory_quantity %}
{{ 'products.product.stock_available' | t: count: qty }}
{% elsif current_variant.inventory_quantity == 0 or current_variant.inventory_quantity < 0 and current_variant.incoming %}
{% if current_variant.available %}
{% assign date = current_variant.next_incoming_date | date: "%B %-d, %Y" %}
{{ 'products.product.will_not_ship_until' | t: date: date }}
{% else %}
{% assign date = current_variant.next_incoming_date | date: "%B %-d, %Y" %}
{{ 'products.product.will_be_in_stock_after' | t: date: date }}
{% endif %}
{% endif %}
{% endif %}
{% endif %}
{% unless product.tags contains 'Zakeke' %}
{% endunless %}
Description -
{{ product.description }}
Delivery+
{{ pages.product-delivery.content }}
{% assign count = product.metafields.custom.ingredients | size %}
{% if count > 1 %}
Ingredients+
Ingredients+
{{ product.metafields.custom.ingredients }}
**Please note that all of our products are produced in a factory that handles nuts.**
{% endif %}
{% assign count = product.metafields.custom.vegetarian | size %}
{% if count > 1 %}
Dietary Information+
| DETAILS | YES/NO |
| - | - |
| Suitable for Vegetarians | {{ product.metafields.custom.vegetarian | upcase }} |
| Suitable for Vegans | {{ product.metafields.custom.vegan | upcase }} |
| Contains Alcohol | {{ product.metafields.custom.containalcohol | upcase }} |
{% endif %}
Product Reviews+
{{product.metafields.stamped.reviews}}
{% comment %}
{% if section.settings.social_sharing_products %}
{% include 'social-sharing', share_title: product.title, share_permalink: product.url, share_image: product %}
{% endif %}
{% endcomment %}
{% unless product == empty %}
{% if section.settings.stock_enable %}
{% endif %}
{% endunless %}
{% schema %}
{
"name": "Product pages",
"settings": [
{
"type": "checkbox",
"id": "enable_ajax",
"label": "Stay on current page when item is added to cart",
"default": true
},
{
"type": "checkbox",
"id": "stock_enable",
"label": "Show stock when less than 10 products available",
"default": false
},
{
"type": "checkbox",
"id": "social_sharing_products",
"label": "Enable product sharing",
"default": true
}
]
}
{% endschema %}

