Where do I change the code to make the product description on the product pages always visible? Or remove the tab that opens the description so it will always be showing. So customers do not have to click on the tab to open up the description information.
Sorry you are facing this issue, it would be my pleasure to help you.
Welcome to the Shopify community! ![]()
Thanks for your good question.
Please share your site URL,
I will check out the issue and provide you a solution here.
https://bodyofelements.com/ PW: ahkuim
@KetanKumar any progress on how to edit the code?
yes, please share your product page code so i will update code
main-product.liquid
{%- if settings.animate_content_show -%} {{ 'section-main-product.css' | asset_url | stylesheet_tag }} {{ 'component-price.css' | asset_url | stylesheet_tag }} {{ 'component-rating.css' | asset_url | stylesheet_tag }} {{ 'component-rating-form.css' | asset_url | stylesheet_tag }} {{ 'component-inputs.css' | asset_url | stylesheet_tag }} {%- if section.settings.use_accordion -%} {{ 'component-toggle.css' | asset_url | stylesheet_tag }} {%- else -%} {{ 'component-main-product-tabs.css' | asset_url | stylesheet_tag }} {%- endif -%} {{ 'component-deferred-media.css' | asset_url | stylesheet_tag }} {{ 'component-slider.css' | asset_url | stylesheet_tag }}{%- else -%}
{{ ‘section-main-product.css’ | asset_url | stylesheet_tag }}
{{ ‘component-price.css’ | asset_url | stylesheet_tag }}
{{ ‘component-rating.css’ | asset_url | stylesheet_tag }}
{{ ‘component-rating-form.css’ | asset_url | stylesheet_tag }}
{{ ‘component-inputs.css’ | asset_url | stylesheet_tag }}
{%- if section.settings.use_accordion -%}
{{ ‘component-toggle.css’ | asset_url | stylesheet_tag }}
{%- else -%}
{{ ‘component-main-product-tabs.css’ | asset_url | stylesheet_tag }}
{%- endif -%}
{{ ‘component-deferred-media.css’ | asset_url | stylesheet_tag }}
{{ ‘component-slider.css’ | asset_url | stylesheet_tag }}
{%- endif -%}
{%- case section.settings.media_size -%}
{%- when ‘small’ -%}
{%- assign left_column = “col-5 left-column–small” -%}
{%- assign right_column = “col-7 col-7–padding-left” -%}
{%- when ‘medium’ -%}
{%- assign left_column = “col-6 col-6–padding-right left-column–medium” -%}
{%- assign right_column = “col-6 col-6–padding-left” -%}
{%- when ‘large’ -%}
{%- assign left_column = “col-7 col-7–padding-right left-column–large” -%}
{%- assign right_column = “col-5” -%}
{%- endcase -%}
{%- assign enable_sticky_addtocart = false -%}
{%- assign first_3d_model = product.media | where: “media_type”, “model” | first -%}
{%- if first_3d_model -%}
{%- if settings.animate_content_show -%}
{%- assign current_variant = product.selected_or_first_available_variant -%}
-
{%- liquid
assign media_count = product.media.size
- {%- assign media_position = 1 -%} {% render 'product-thumbnail', media: featured_media, position: media_position, loop: section.settings.enable_video_looping, modal_id: section.id, xr_button: true, media_width: media_width, lazy_load: false %} {%- endif -%} {%- for media in product.media -%} {%- unless media.id == product.selected_or_first_available_variant.featured_media.id -%}
- {%- assign media_position = media_position | default: 0 | plus: 1 -%} {% render 'product-thumbnail', media: media, position: media_position, loop: section.settings.enable_video_looping, modal_id: section.id, xr_button: true, media_width: media_width, lazy_load: true %} {%- endunless -%} {%- endfor -%}
if section.settings.media_size == ‘large’
assign media_width = 0.65
elsif section.settings.media_size == ‘medium’
assign media_width = 0.55
elsif section.settings.media_size == ‘small’
assign media_width = 0.45
endif
-%}
{%- if product.selected_or_first_available_variant.featured_media != null -%}
{%- assign featured_media = product.selected_or_first_available_variant.featured_media -%}
{%- if media_count > 1 and section.settings.mobile_thumbnails == “thumbnails_dots” -%}
{%- if media_count > 1 -%}
-
{%- if featured_media != null -%}
{%- capture media_index -%}
{%- if featured_media.media_type == 'model' -%}{%- increment model_index -%}
{%- elsif featured_media.media_type == 'video' or featured_media.media_type == 'external_video' -%}{%- increment video_index -%}
{%- elsif featured_media.media_type == 'image'%}{%- increment image_index -%}
{%- endif -%}
{%- endcapture -%}
{%- assign media_index = media_index | plus: 1 -%}
-
-
{%- if media.media_type == 'model' -%}
{%- render 'icon-3d-thumbnail' -%}
{%- elsif media.media_type == 'video' or media.media_type == 'external_video' -%}
{%- render 'icon-play-thumbnail' -%}
{%- endif -%}
{%- capture badges -%}
{%- if product.available == false or current_variant.available == false -%}
{{ ‘products.product.sold_out’ | t }}
{%- elsif current_variant.compare_at_price > current_variant.price and current_variant.available -%}
{{ ‘products.product.on_sale’ | t }}
{%- endif -%}
{%- unless product.metafields.softali.featured_badge == blank -%}
{{ product.metafields.softali.featured_badge }}
{%- endunless -%}
{%- endcapture -%}
{%- for block in section.blocks -%}
{%- case block.type -%}
{%- when “@app” -%}
{% render block %}
{%- when “information” -%}
-
{%- if block.settings.show_sku -%}
{{ 'products.product.information.sku' | t }}
{{ current_variant.sku }}
{%- endif -%}
{%- if block.settings.show_barcode -%}
{{ 'products.product.information.barcode' | t }} {{ current_variant.barcode }}
{%- endif -%}
{%- if block.settings.show_vendor and product.vendor != blank -%}
- {{ 'products.product.information.vendor' | t }} {{ product.vendor }} {%- endif -%} {%- if block.settings.show_type and product.type != blank -%}
- {{ 'products.product.information.type' | t }} {{ product.type }} {%- endif -%}
{%- when “title” -%}
{{ product.title | escape }}
{%- when ‘price’ -%}
{%- if shop.taxes_included and block.settings.show_tax -%}
{%- when “text” -%}
{%- capture text_content -%}
{%- for i in (1..5) -%}
{%- assign icon_name = ‘icon_name_’ | append: i -%}
{%- assign content = ‘content_’ | append: i -%}
{%- assign icon_name = block.settings[icon_name] -%}
{%- assign content = block.settings[content] -%}
{%- if icon_name != blank or content != blank -%}
{%- when “custom_liquid” -%}
{{ block.settings.custom_liquid }}
{%- when “variant_picker” -%}
{%- unless product.has_only_default_variant -%}
{%- assign v_headings = “||” -%}
{%- for i in (1..6) -%}
{%- assign variant_name = “variant_name_” | append: i -%}
{%- assign variant_name = block.settings[variant_name] -%}
{%- if variant_name != blank -%}
{%- assign v_headings = v_headings | append: variant_name | append: “||” -%}
{%- endif -%}
{%- endfor -%}
{%- assign swatches_design = settings.swatches_design -%}
{%- assign variants_names = settings.variants_names -%}
{%- assign css_colors = settings.css_colors -%}
{%- liquid
if swatches_design != ‘none’
assign variants_names = ‘||’ | append:variants_names | strip_newlines | downcase | strip | replace: ', ', ‘,’ | replace: ‘,’, ‘||’ | append: ‘||’
assign css_colors = ‘,’ | append:css_colors | strip_newlines | downcase | strip | replace: ': ', ‘:’
if swatches_design == ‘image’
for option in product.options_with_values
assign option_name = ‘||’ | append: option.name | append: ‘||’ | downcase
if variants_names contains option_name
assign option_name = ‘option’ | append: forloop.index
break
endif
endfor
capture get_product_images_from_variants_options
render ‘get_product_images_from_variants_options’, product:product, option_name:option_name, image_width:‘240x’
endcapture
endif
else
assign variants_names = ‘’
assign css_colors = ‘’
endif
case section.settings.media_size
when ‘small’
assign text_grid_desktop = 5
if section.settings.width == ‘page-wide’
assign color_grid_desktop = 18
assign image_grid_desktop = 12
else
assign color_grid_desktop = 14
assign image_grid_desktop = 8
endif
when ‘medium’
assign text_grid_desktop = 4
if section.settings.width == ‘page-wide’
assign color_grid_desktop = 16
assign image_grid_desktop = 10
else
assign color_grid_desktop = 12
assign image_grid_desktop = 8
endif
when ‘large’
assign text_grid_desktop = 3
if section.settings.width == ‘page-wide’
assign color_grid_desktop = 14
assign image_grid_desktop = 8
else
assign color_grid_desktop = 10
assign image_grid_desktop = 6
endif
endcase
-%}
{%- if block.settings.picker_type == ‘button’ -%}
<variant-radios id=“variant-radios-{{ section.id }}”
class=“display-block mt40 no-js-hidden” data-section=“{{ section.id }}” data-url=“{{ product.url }}” {{ block.shopify_attributes }}>
{%- for option in product.options_with_values -%}
{%- liquid
assign grop_options_type = ‘button’
assign option_name = option_name | downcase
if variants_names contains option_name and swatches_design == ‘image’
capture grid_style
echo ‘style=“–grid-desktop:grid_desktop_liquid;–grid-mobile:4;”’ | replace: ‘grid_desktop_liquid’, image_grid_desktop
endcapture
assign form_container_mobile = “product-form__container__color”
assign grop_options_type = ‘image’
elsif variants_names contains option_name and swatches_design == ‘color’
capture grid_style
echo ‘style=“–grid-desktop:grid_desktop_liquid;–grid-mobile:4;”’ | replace: ‘grid_desktop_liquid’, color_grid_desktop
endcapture
assign form_container_mobile = “product-form__container__color”
assign grop_options_type = ‘color’
else
assign grid_style = ‘style="–grid-desktop:’ | append: text_grid_desktop | append: ‘;"’
assign form_container_mobile = “”
endif
-%}
{%- if get_product_images_from_variants_options contains color_swatch and grop_options_type == ‘image’ -%}
{%- assign image_src=get_product_images_from_variants_options | split: color_swatch | last | split: ‘%%’ | first -%}
{%- endif -%}
{%- if get_product_images_from_variants_options contains color_swatch and grop_options_type == ‘image’ and image_src != blank -%}
{{ value }}
{%- elsif css_colors contains color_swatch and grop_options_type == ‘color’ -%}
{%- assign color = css_colors | split: color_swatch | last | split: ‘,’ | first -%}
{{ value }}
{%- else -%}
{{ value }}
{%- endif -%}
{{ ‘products.product.product_variants’ | t }}
{%- when “rating” -%}
{%- if product.metafields.reviews.rating.value != blank -%}
{% liquid
assign rating_decimal = 0
assign decimal = product.metafields.reviews.rating.value.rating | modulo: 1
if decimal >= 0.3 and decimal <= 0.7
assign rating_decimal = 0.5
elsif decimal > 0.7
assign rating_decimal = 1
endif
%}
{{ product.metafields.reviews.rating.value }} / {{ product.metafields.reviews.rating.value.scale_max }}
{{ "accessibility.total_reviews" | t: count: product.metafields.reviews.rating_count }}
{%- when “buy_buttons” -%}
{%- assign enable_sticky_addtocart = block.settings.enable_sticky_addtocart -%}
{%- form ‘product’, product, id: product_form_id, class: ‘form’, novalidate: ‘novalidate’, data-type: ‘add-to-cart-form’ -%}
<button
type=“submit”
name=“add”
class=“product-form__submit btn btn_zoom w-full{% if block.settings.button_type_product == “only_icon” %} product-form__submit__hide-text{% endif %}”
{% if current_variant.available == false %}disabled{% endif %}
{%- if block.settings.button_type_product != “only_text” -%}{%- render “icon-cart” -%}{%- endif -%}
{%- if current_variant.available and block.settings.button_type_product != “only_icon” -%}
{{ ‘products.product.add_to_cart’ | t }}
{%- else -%}
{{ ‘products.product.sold_out’ | t }}
{%- endif -%}
{%- if settings.animate_content_show -%}
{{ 'component-pickup-availability.css' | asset_url | stylesheet_tag }} {%- else -%} {{ 'component-pickup-availability.css' | asset_url | stylesheet_tag }} {%- endif -%}{%- assign pick_up_availabilities = current_variant.store_availabilities | where: ‘pick_up_enabled’, true -%}
<pickup-availability class=“product__pickup-availabilities no-js-hidden”
{% if current_variant.available and pick_up_availabilities.size > 0 %} available{% endif %}
data-root-url=“{{ routes.root_url }}”
data-variant-id=“{{ current_variant.id }}”
data-has-only-default-variant=“{{ product.has_only_default_variant }}”
{{ 'products.product.pickup_availability.unavailable' | t }}
{{ 'products.product.pickup_availability.refresh' | t }}{%- when “share” -%}
<share-button id=“Share-{{ section.id }}” class=“share-button” {{ block.shopify_attributes }}>
{%- if block.settings.show_icon -%}
{% render ‘icon-share’ %}
{%- endif -%}
{{ block.settings.share_label | escape }}
{%- if block.settings.show_icon -%}
{% render 'icon-share' %}
{%- endif -%}
{{ block.settings.share_label | escape }}
{%- when “inventory” -%}
{%- capture invertory -%}
{%- if product.available and current_variant.available -%}
{%- if current_variant.inventory_management == “shopify” and current_variant.inventory_policy != “continue” and current_variant.inventory_quantity <= block.settings.inventory -%}
{%- render “icons-inventory” icon_name:“hot” -%}
{{ ‘products.product.inventory.hot’ | t: quantity: current_variant.inventory_quantity }}
{%- else -%}
{%- render “icons-inventory” icon_name:“normal” -%}
{{ ‘products.product.inventory.normal’ | t }}
{%- endif -%}
{%- endif -%}
{%- endcapture -%}
{%- endcase -%}
{%- endfor -%}
{%- if section.settings.use_accordion -%}
{%- render “main-product-tabs–accordion” section: section -%}
{%- else -%}
{%- render “main-product-tabs” section: section -%}
{%- endif -%}
{% assign popups = section.blocks | where: “type”, “popup” %}
{%- for block in popups -%}
<modal-dialog id=“PopupModal-{{ block.id }}” class=“popup-modal” {{ block.shopify_attributes }}>
{% assign popups = section.blocks | where: “type”, “variant_picker” %}
{%- for block in popups -%}
{%- assign v_headings = “||” -%}
{%- for i in (1..6) -%}
{%- assign variant_name = “variant_name_” | append: i -%}
{%- assign variant_name = block.settings[variant_name] -%}
{%- if variant_name != blank -%}
{%- assign v_headings = v_headings | append: variant_name | append: “||” -%}
{%- endif -%}
{%- endfor -%}
{%- for option in product.options_with_values -%}
{%- assign option_name = ‘||’ | append: option.name | append: ‘||’ -%}
{%- if v_headings contains option_name -%}
<modal-dialog id=“PopupModal-{{ block.id }}{{ forloop.index }}” class=“popup-modal” {{ block.shopify_attributes }}>
{% assign popups = section.blocks | where: “type”, “message” %}
{%- for block in popups -%}
<modal-dialog id=“PopupModal-message” class=“popup-modal” {{ block.shopify_attributes }}>
{{ 'templates.contact.heading_product_page_modal' | t }}
{{ 'templates.contact.form.post_success' | t }}
{%- endif -%}{%- for media in product.media -%}
{%- liquid
unless media.id == product.selected_or_first_available_variant.featured_media.id
render ‘product-media’, media: media, loop: section.settings.enable_video_looping
endunless
-%}
{%- endfor -%}
{%- render “sticky-add-to-cart”, section: section, product: product, current_variant: current_variant, enable_sticky_addtocart: enable_sticky_addtocart -%}
{% javascript %}
class ProductModal extends ModalDialog {
constructor() {
super();
}
hide() {
super.hide();
}
show(opener) {
super.show(opener);
this.showActiveMedia();
}
showActiveMedia() {
this.querySelectorAll([data-media-id]:not([data-media-id="${this.openedBy.getAttribute("data-media-id")}"])).forEach((element) => {
element.classList.remove(‘active’);
}
)
const activeMedia = this.querySelector([data-media-id="${this.openedBy.getAttribute("data-media-id")}"]);
const activeMediaTemplate = activeMedia.querySelector(‘template’);
const activeMediaContent = activeMediaTemplate ? activeMediaTemplate.content : null;
activeMedia.classList.add(‘active’);
activeMedia.scrollIntoView();
const container = this.querySelector(‘[role=“document”]’);
container.scrollLeft = (activeMedia.width - container.clientWidth) / 2;
if (activeMedia.nodeName == ‘DEFERRED-MEDIA’ && activeMediaContent && activeMediaContent.querySelector(‘.js-youtube’))
activeMedia.loadContent();
}
}
if (!customElements.get(‘product-modal’)) customElements.define(‘product-modal’, ProductModal);
{% endjavascript %}
{% if product.media.size > 0 %}
{% endif %}
{%- if first_3d_model -%}
{%- endif -%}
{%- liquid
if product.selected_or_first_available_variant.featured_media
assign seo_media = product.selected_or_first_available_variant.featured_media
else
assign seo_media = product.featured_media
endif
-%}
{% schema %}
{
“name”: “t:sections.main-product.name”,
“tag”: “section”,
“class”: “section”,
“settings”: [
{
“type”: “header”,
“content”: “t:sections.general.settings.header_layout.content”
},
{
“type”: “select”,
“id”: “top_spacing”,
“options”: [
{
“value”: “none”,
“label”: “t:sections.general.settings.top_spacing.options__none.label”
},
{
“value”: “small”,
“label”: “t:sections.general.settings.top_spacing.options__small.label”
},
{
“value”: “medium”,
“label”: “t:sections.general.settings.top_spacing.options__medium.label”
},
{
“value”: “normal”,
“label”: “t:sections.general.settings.top_spacing.options__normal.label”
}
],
“default”: “normal”,
“label”: “t:sections.general.settings.top_spacing.label”
},
{
“type”: “select”,
“id”: “width”,
“options”: [
{
“value”: “page-width”,
“label”: “t:sections.general.settings.width.options__boxed.label”
},
{
“value”: “page-wide”,
“label”: “t:sections.general.settings.width.options__wide.label”
}
],
“default”: “page-width”,
“label”: “t:sections.general.settings.width.label”,
“info”: “t:sections.general.settings.width.info”
},
{
“type”: “select”,
“id”: “media_size”,
“options”: [
{
“value”: “small”,
“label”: “t:sections.main-product.settings.media_size.options__1.label”
},
{
“value”: “medium”,
“label”: “t:sections.main-product.settings.media_size.options__2.label”
},
{
“value”: “large”,
“label”: “t:sections.main-product.settings.media_size.options__3.label”
}
],
“default”: “large”,
“label”: “t:sections.main-product.settings.media_size.label”,
“info”: “t:sections.main-product.settings.media_size.info”
},
{
“type”: “select”,
“id”: “heading_aligment”,
“options”: [
{
“value”: “mobile-text-left”,
“label”: “t:sections.general.settings.texts_aligment.options__left.label”
},
{
“value”: “mobile-text-center”,
“label”: “t:sections.general.settings.texts_aligment.options__center.label”
}
],
“default”: “mobile-text-left”,
“label”: “t:sections.main-product.settings.heading_aligment.label”
},
{
“type”: “checkbox”,
“id”: “use_accordion”,
“default”: false,
“label”: “t:sections.main-product.settings.use_accordion.label”
},
{
“type”: “header”,
“content”: “t:sections.main-product.settings.header.content”,
“info”: “t:sections.main-product.settings.header.info”
},
{
“type”: “select”,
“id”: “mobile_thumbnails”,
“options”: [
{
“value”: “thumbnails_dots”,
“label”: “t:sections.main-product.settings.mobile_thumbnails.options__1.label”
},
{
“value”: “thumbnails_images”,
“label”: “t:sections.main-product.settings.mobile_thumbnails.options__2.label”
}
],
“default”: “thumbnails_dots”,
“label”: “t:sections.main-product.settings.mobile_thumbnails.label”
},
{
“type”: “select”,
“id”: “mobile_thumbnails_aligment”,
“options”: [
{
“value”: “justify-content-start”,
“label”: “t:sections.general.settings.texts_aligment.options__left.label”
},
{
“value”: “justify-content-center”,
“label”: “t:sections.general.settings.texts_aligment.options__center.label”
}
],
“default”: “justify-content-center”,
“label”: “t:sections.main-product.settings.mobile_thumbnails_aligment.label”
},
{
“type”: “checkbox”,
“id”: “enable_sticky_info”,
“default”: true,
“label”: “t:sections.main-product.settings.enable_sticky_info.label”
},
{
“type”: “checkbox”,
“id”: “enable_video_looping”,
“default”: false,
“label”: “t:sections.main-product.settings.enable_video_looping.label”
}
],
“blocks”: [
{
“type”: “title”,
“name”: “t:sections.main-product.blocks.title.name”,
“limit”: 1,
“settings”: [
{
“type”: “select”,
“id”: “text_size”,
“options”: [
{
“value”: “h3”,
“label”: “t:sections.main-product.settings.media_size.options__1.label”
},
{
“value”: “h2”,
“label”: “t:sections.main-product.settings.media_size.options__2.label”
},
{
“value”: “emptyclass”,
“label”: “t:sections.main-product.settings.media_size.options__3.label”
}
],
“default”: “emptyclass”,
“label”: “Text size”
}
]
},
{
“type”: “price”,
“name”: “t:sections.main-product.blocks.price.name”,
“limit”: 1,
“settings”: [
{
“type”: “checkbox”,
“id”: “show_tax”,
“default”: true,
“label”: “t:sections.main-product.blocks.price.settings.show_tax.label”
},
{
“type”: “checkbox”,
“id”: “show_shipping”,
“default”: true,
“label”: “t:sections.main-product.blocks.price.settings.show_shipping.label”
}
]
},
{
“type”: “information”,
“name”: “t:sections.main-product.blocks.information.name”,
“limit”: 1,
“settings”: [
{
“type”: “checkbox”,
“id”: “show_sku”,
“default”: true,
“label”: “t:sections.main-product.blocks.information.settings.show_sku.label”
},
{
“type”: “checkbox”,
“id”: “show_barcode”,
“default”: true,
“label”: “t:sections.main-product.blocks.information.settings.show_barcode.label”
},
{
“type”: “checkbox”,
“id”: “show_vendor”,
“default”: true,
“label”: “t:sections.main-product.blocks.information.settings.show_vendor.label”
},
{
“type”: “checkbox”,
“id”: “show_type”,
“default”: true,
“label”: “t:sections.main-product.blocks.information.settings.show_type.label”
}
]
},
{
“type”: “variant_picker”,
“name”: “t:sections.main-product.blocks.variant_picker.name”,
“limit”: 1,
“settings”: [
{
“type”: “select”,
“id”: “picker_type”,
“options”: [
{
“value”: “dropdown”,
“label”: “t:sections.main-product.blocks.variant_picker.settings.picker_type.options__1.label”
},
{
“value”: “button”,
“label”: “t:sections.main-product.blocks.variant_picker.settings.picker_type.options__2.label”
}
],
“default”: “button”,
“label”: “t:sections.main-product.blocks.variant_picker.settings.picker_type.label”
},
{
“type”: “header”,
“content”: “t:sections.main-product.blocks.variant_picker.settings.header.content”
},
{
“type”: “paragraph”,
“content”: “t:sections.main-product.blocks.variant_picker.settings.paragraph.content”
},
{
“type”: “header”,
“content”: “#1”
},
{
“type”: “text”,
“id”: “variant_name_1”,
“label”: “t:sections.main-product.blocks.variant_picker.settings.variant_name.label”,
“default”: “Size”
},
{
“type”: “text”,
“id”: “content_1”,
“label”: “t:sections.main-product.blocks.variant_picker.settings.content.label”,
“default”: “Add an additional description to your product option. Ex: Size guides, and other common questions.”
},
{
“type”: “page”,
“id”: “page_1”,
“label”: “t:sections.main-product.blocks.variant_picker.settings.page.label”
},
{
“type”: “header”,
“content”: “#2”
},
{
“type”: “text”,
“id”: “variant_name_2”,
“label”: “t:sections.main-product.blocks.variant_picker.settings.variant_name.label”
},
{
“type”: “text”,
“id”: “content_2”,
“label”: “t:sections.main-product.blocks.variant_picker.settings.content.label”
},
{
“type”: “page”,
“id”: “page_2”,
“label”: “t:sections.main-product.blocks.variant_picker.settings.page.label”
},
{
“type”: “header”,
“content”: “#3”
},
{
“type”: “text”,
“id”: “variant_name_3”,
“label”: “t:sections.main-product.blocks.variant_picker.settings.variant_name.label”
},
{
“type”: “text”,
“id”: “content_3”,
“label”: “t:sections.main-product.blocks.variant_picker.settings.content.label”
},
{
“type”: “page”,
“id”: “page_3”,
“label”: “t:sections.main-product.blocks.variant_picker.settings.page.label”
},
{
“type”: “header”,
“content”: “#4”
},
{
“type”: “text”,
“id”: “variant_name_4”,
“label”: “t:sections.main-product.blocks.variant_picker.settings.variant_name.label”
},
{
“type”: “text”,
“id”: “content_4”,
“label”: “t:sections.main-product.blocks.variant_picker.settings.content.label”
},
{
“type”: “page”,
“id”: “page_4”,
“label”: “t:sections.main-product.blocks.variant_picker.settings.page.label”
},
{
“type”: “header”,
“content”: “#5”
},
{
“type”: “text”,
“id”: “variant_name_5”,
“label”: “t:sections.main-product.blocks.variant_picker.settings.variant_name.label”
},
{
“type”: “text”,
“id”: “content_5”,
“label”: “t:sections.main-product.blocks.variant_picker.settings.content.label”
},
{
“type”: “page”,
“id”: “page_5”,
“label”: “t:sections.main-product.blocks.variant_picker.settings.page.label”
},
{
“type”: “header”,
“content”: “#6”
},
{
“type”: “text”,
“id”: “variant_name_6”,
“label”: “t:sections.main-product.blocks.variant_picker.settings.variant_name.label”
},
{
“type”: “text”,
“id”: “content_6”,
“label”: “t:sections.main-product.blocks.variant_picker.settings.content.label”
},
{
“type”: “page”,
“id”: “page_6”,
“label”: “t:sections.main-product.blocks.variant_picker.settings.page.label”
}
]
},
{
“type”: “text”,
“name”: “t:sections.main-product.blocks.text.name”,
“name”: “Text”,
“settings”: [
{
“type”: “select”,
“id”: “text_size”,
“options”: [
{
“value”: “small”,
“label”: “t:sections.main-product.settings.media_size.options__1.label”
},
{
“value”: “medium”,
“label”: “t:sections.main-product.settings.media_size.options__2.label”
},
{
“value”: “large”,
“label”: “t:sections.main-product.settings.media_size.options__3.label”
}
],
“default”: “small”,
“label”: “t:sections.main-product.blocks.text.settings.text_size.label”
},
{
“type”: “header”,
“content”: “#1”
},
{
“type”: “text”,
“id”: “icon_name_1”,
“label”: “t:sections.main-product.blocks.collapsible_tab.settings.icon.label”,
“default”: “check_sm”
},
{
“type”: “richtext”,
“id”: “content_1”,
“label”: “t:sections.main-product.blocks.collapsible_tab.settings.content.label”,
“default”: “
Short content about your product.
”},
{
“type”: “header”,
“content”: “#2”
},
{
“type”: “text”,
“id”: “icon_name_2”,
“label”: “t:sections.main-product.blocks.collapsible_tab.settings.icon.label”,
“default”: “check_sm”
},
{
“type”: “richtext”,
“id”: “content_2”,
“label”: “t:sections.main-product.blocks.collapsible_tab.settings.content.label”,
“default”: “
Short content about your product.
”},
{
“type”: “header”,
“content”: “#3”
},
{
“type”: “text”,
“id”: “icon_name_3”,
“label”: “t:sections.main-product.blocks.collapsible_tab.settings.icon.label”
},
{
“type”: “richtext”,
“id”: “content_3”,
“label”: “t:sections.main-product.blocks.collapsible_tab.settings.content.label”,
“default”: “
Icons are optional
”},
{
“type”: “header”,
“content”: “#4”
},
{
“type”: “text”,
“id”: “icon_name_4”,
“label”: “t:sections.main-product.blocks.collapsible_tab.settings.icon.label”,
“default”: “check”
},
{
“type”: “richtext”,
“id”: “content_4”,
“label”: “t:sections.main-product.blocks.collapsible_tab.settings.content.label”,
“default”: “
USE RICH TEXT EDITOR<br/></strong>And big icons to highlight the product sale point</p>”
},
{
“type”: “header”,
“content”: “#5”
},
{
“type”: “text”,
“id”: “icon_name_5”,
“label”: “t:sections.main-product.blocks.collapsible_tab.settings.icon.label”
},
{
“type”: “richtext”,
“id”: “content_5”,
“label”: “t:sections.main-product.blocks.collapsible_tab.settings.content.label”
}
]
},
{
“type”: “custom_liquid”,
“name”: “t:sections.main-product.blocks.custom_liquid.name”,
“settings”: [
{
“type”: “liquid”,
“id”: “custom_liquid”,
“label”: “t:sections.main-product.blocks.custom_liquid.settings.custom_liquid.label”,
“info”: “t:sections.main-product.blocks.custom_liquid.settings.custom_liquid.info”
}
]
},
{
“type”: “description”,
“name”: “t:sections.main-product.blocks.description.name”,
“limit”: 1,
“settings”: [
{
“type”: “text”,
“id”: “heading”,
“default”: “Description”,
“info”: “t:sections.main-product.blocks.collapsible_tab.settings.heading.info”,
“label”: “t:sections.main-product.blocks.collapsible_tab.settings.heading.label”
},
{
“type”: “text”,
“id”: “icon_name”,
“label”: “t:sections.main-product.blocks.collapsible_tab.settings.icon.label”,
“info”: “info_sm”
}
]
},
{
“type”: “buy_buttons”,
“name”: “t:sections.main-product.blocks.buy_buttons.name”,
“limit”: 1,
“settings”: [
{
“type”: “checkbox”,
“id”: “show_quantity”,
“default”: true,
“label”: “t:sections.main-product.blocks.buy_buttons.settings.show_quantity.label”
},
{
“type”: “select”,
“id”: “button_type_product”,
“options”: [
{
“value”: “show”,
“label”: “t:sections.featured-collection.settings.button_type_product.options__show.label”
},
{
“value”: “only_text”,
“label”: “t:sections.featured-collection.settings.button_type_product.options__only_text.label”
},
{
“value”: “only_icon”,
“label”: “t:sections.featured-collection.settings.button_type_product.options__only_icon.label”
}
],
“default”: “show”,
“label”: “t:sections.featured-collection.settings.button_type_product.label”
},
{
“type”: “checkbox”,
“id”: “enable_sticky_addtocart”,
“default”: true,
“label”: “t:sections.main-product.blocks.buy_buttons.settings.enable_sticky_addtocart.label”
},
{
“type”: “checkbox”,
“id”: “show_dynamic_checkout”,
“default”: true,
“label”: “t:sections.main-product.blocks.buy_buttons.settings.show_dynamic_checkout.label”,
“info”: “t:sections.main-product.blocks.buy_buttons.settings.show_dynamic_checkout.info”
}
]
},
{
“type”: “collapsible_tab”,
“name”: “t:sections.main-product.blocks.collapsible_tab.name”,
“settings”: [
{
“type”: “text”,
“id”: “heading”,
“default”: “Collapsible row”,
“info”: “t:sections.main-product.blocks.collapsible_tab.settings.heading.info”,
“label”: “t:sections.main-product.blocks.collapsible_tab.settings.heading.label”
},
{
“type”: “text”,
“id”: “icon_name”,
“label”: “t:sections.main-product.blocks.collapsible_tab.settings.icon.label”,
“default”: “new_sm”
},
{
“type”: “richtext”,
“id”: “content”,
“label”: “t:sections.main-product.blocks.collapsible_tab.settings.content.label”,
“default”: “
Add an additional description to your products. You may set the same content for all products. </p>
Ex: Shipping and return policies, size guides, and other common questions.</p>
Or you may link a dynamic source to show product fields like vendor or custom product meta fields.</p>
Ex: Ingredients, nutritional info, additional features and other unique per-product data.</p>”
},
{
“type”: “page”,
“id”: “page”,
“label”: “t:sections.main-product.blocks.collapsible_tab.settings.page.label”
}
]
},
{
“type”: “additional-feature”,
“name”: “t:sections.main-product.blocks.additional-feature.name”,
“settings”: [
{
“type”: “text”,
“id”: “heading”,
“default”: “Additional features”,
“info”: “t:sections.main-product.blocks.additional-feature.settings.heading.info”,
“label”: “t:sections.main-product.blocks.additional-feature.settings.heading.label”
},
{
“type”: “text”,
“id”: “icon_name”,
“label”: “t:sections.main-product.blocks.additional-feature.settings.icon_name.label”,
“default”: “certified_sm”
},
{
“type”: “header”,
“content”: “t:sections.main-product.blocks.additional-feature.settings.header_1.content”
},
{
“type”: “text”,
“id”: “icon_1”,
“label”: “t:sections.main-product.blocks.additional-feature.settings.icon.label”,
“default”: “check”
},
{
“type”: “text”,
“id”: “text_1”,
“label”: “t:sections.main-product.blocks.additional-feature.settings.text.label”,
“default”: “Add product sale point”
},
{
“type”: “header”,
“content”: “t:sections.main-product.blocks.additional-feature.settings.header_2.content”
},
{
“type”: “text”,
“id”: “icon_2”,
“label”: “t:sections.main-product.blocks.additional-feature.settings.icon.label”,
“default”: “check”
},
{
“type”: “text”,
“id”: “text_2”,
“label”: “t:sections.main-product.blocks.additional-feature.settings.text.label”,
“default”: “Add product sale point”
},
{
“type”: “header”,
“content”: “t:sections.main-product.blocks.additional-feature.settings.header_3.content”
},
{
“type”: “text”,
“id”: “icon_3”,
“label”: “t:sections.main-product.blocks.additional-feature.settings.icon.label”
},
{
“type”: “text”,
“id”: “text_3”,
“label”: “t:sections.main-product.blocks.additional-feature.settings.text.label”
},
{
“type”: “header”,
“content”: “t:sections.main-product.blocks.additional-feature.settings.header_4.content”
},
{
“type”: “text”,
“id”: “icon_4”,
“label”: “t:sections.main-product.blocks.additional-feature.settings.icon.label”
},
{
“type”: “text”,
“id”: “text_4”,
“label”: “t:sections.main-product.blocks.additional-feature.settings.text.label”
},
{
“type”: “header”,
“content”: “t:sections.main-product.blocks.additional-feature.settings.header_5.content”
},
{
“type”: “text”,
“id”: “icon_5”,
“label”: “t:sections.main-product.blocks.additional-feature.settings.icon.label”
},
{
“type”: “text”,
“id”: “text_5”,
“label”: “t:sections.main-product.blocks.additional-feature.settings.text.label”
},
{
“type”: “header”,
“content”: “t:sections.main-product.blocks.additional-feature.settings.header_6.content”
},
{
“type”: “text”,
“id”: “icon_6”,
“label”: “t:sections.main-product.blocks.additional-feature.settings.icon.label”
},
{
“type”: “text”,
“id”: “text_6”,
“label”: “t:sections.main-product.blocks.additional-feature.settings.text.label”
}
]
},
{
“type”: “share”,
“name”: “t:sections.main-product.blocks.share.name”,
“limit”: 1,
“settings”: [
{
“type”: “checkbox”,
“id”: “show_icon”,
“default”: true,
“label”: “t:sections.main-product.blocks.share.settings.show_icon.label”
},
{
“type”: “text”,
“id”: “share_label”,
“label”: “t:sections.main-product.blocks.share.settings.text.label”,
“default”: “Share”
},
{
“type”: “paragraph”,
“content”: “t:sections.main-product.blocks.share.settings.featured_image_info.content”
},
{
“type”: “paragraph”,
“content”: “t:sections.main-product.blocks.share.settings.title_info.content”
}
]
},
{
“type”: “message”,
“name”: “t:sections.main-product.blocks.message.name”,
“limit”: 1,
“settings”: [
{
“type”: “checkbox”,
“id”: “show_icon”,
“default”: true,
“label”: “t:sections.main-product.blocks.message.settings.show_icon.label”
},
{
“type”: “text”,
“id”: “text”,
“label”: “t:sections.main-product.blocks.message.settings.text.label”,
“default”: “Ask a question”
}
]
},
{
“type”: “popup”,
“name”: “t:sections.main-product.blocks.popup.name”,
“settings”: [
{
“type”: “text”,
“id”: “icon_name”,
“label”: “t:sections.main-product.blocks.popup.settings.icon.label”
},
{
“type”: “text”,
“id”: “text”,
“default”: “Pop-up link text”,
“label”: “t:sections.main-product.blocks.popup.settings.link_label.label”
},
{
“type”: “text”,
“id”: “content”,
“label”: “t:sections.main-product.blocks.popup.settings.content.label”
},
{
“id”: “page”,
“type”: “page”,
“label”: “t:sections.main-product.blocks.popup.settings.page.label”
}
]
},
{
“type”: “inventory”,
“name”: “Inventory”,
“name”: “t:sections.main-product.blocks.inventory.name”,
“limit”: 1,
“settings”: [
{
“type”: “range”,
“id”: “inventory”,
“min”: 0,
“max”: 20,
“step”: 1,
“label”: “t:sections.main-product.blocks.inventory.settings.inventory.label”,
“default”: 8
}
]
},
{
“type”: “rating”,
“name”: “t:sections.main-product.blocks.rating.name”,
“limit”: 1,
“settings”: [
{
“type”: “paragraph”,
“content”: “t:sections.main-product.blocks.rating.settings.paragraph.content”
}
]
},
{
“type”: “@app”
}
]
}
{% endschema %}
Found the solution. Uncheck the box “Tabs as accordian”. Why was I not told there was a user manual for the theme! This would have saved many hours of searching for answers.
https://softalib4.gitbook.io/minion-shopify-theme/products#layout
