Hi guys, hope everyone is safe and well.
We use the Warehouse theme by Maestroo, and it comes with a “text with icons” static section which is coded to sit above the footer in every page on our site.
I’d much rather this section be:
A) A dynamic section which I can place wherever I want
B) Only visible on the home page (I want to place it immediately below our main banner on our home page).
Below you’ll find the code for the section in question. If anyone could help me out I’d really appreciate it!
SECTION STARTS HERE:
{%- if section.settings.show_section -%}
{%- if block.settings.title != blank or block.settings.content != blank -%}
{{ block.settings.title | escape }}
{%- endif -%}{%- if block.settings.content != blank -%}
{% schema %}
{
“name”: “Text with icons”,
“max_blocks”: 4,
“settings”: [
{
“type”: “checkbox”,
“id”: “show_section”,
“label”: “Show section”,
“default”: true
},
{
“type”: “checkbox”,
“id”: “stack_mobile”,
“label”: “Stack on mobile”,
“default”: false
}
],
“blocks”: [
{
“type”: “item”,
“name”: “Item”,
“settings”: [
{
“type”: “select”,
“id”: “icon”,
“label”: “Icon”,
“options”: [
{
“value”: “bi-add-to-cart”,
“label”: “Add to cart”,
“group”: “Shop”
},
{
“value”: “bi-gift-wrap”,
“label”: “Gift wrap”,
“group”: “Shop”
},
{
“value”: “bi-gift-box”,
“label”: “Gift box”,
“group”: “Shop”
},
{
“value”: “bi-heart”,
“label”: “Heart”,
“group”: “Shop”
},
{
“value”: “bi-ecology”,
“label”: “Ecology”,
“group”: “Shop”
},
{
“value”: “bi-plant”,
“label”: “Plant”,
“group”: “Shop”
},
{
“value”: “bi-shop”,
“label”: “Shop”,
“group”: “Shop”
},
{
“value”: “bi-shop-pin”,
“label”: “Shop with pin”,
“group”: “Shop”
},
{
“value”: “bi-alert”,
“label”: “Alert”,
“group”: “Communication”
},
{
“value”: “bi-chat”,
“label”: “Chat”,
“group”: “Communication”
},
{
“value”: “bi-comment”,
“label”: “Comment”,
“group”: “Communication”
},
{
“value”: “bi-customer-support”,
“label”: “Customer support”,
“group”: “Communication”
},
{
“value”: “bi-email”,
“label”: “Email”,
“group”: “Communication”
},
{
“value”: “bi-network”,
“label”: “Network”,
“group”: “Communication”
},
{
“value”: “bi-newsletter”,
“label”: “Newsletter”,
“group”: “Communication”
},
{
“value”: “bi-love”,
“label”: “Love”,
“group”: “Communication”
},
{
“value”: “bi-phone”,
“label”: “Phone”,
“group”: “Communication”
},
{
“value”: “bi-share”,
“label”: “Share”,
“group”: “Communication”
},
{
“value”: “bi-delivery”,
“label”: “Delivery”,
“group”: “Delivery”
},
{
“value”: “bi-fast-delivery”,
“label”: “Fast delivery”,
“group”: “Delivery”
},
{
“value”: “bi-returns”,
“label”: “Returns”,
“group”: “Delivery”
},
{
“value”: “bi-time”,
“label”: “Time”,
“group”: “Delivery”
},
{
“value”: “bi-secure-payment”,
“label”: “Secure payment”,
“group”: “Security”
},
{
“value”: “bi-mobile-payment”,
“label”: “Mobile payment”,
“group”: “Security”
},
{
“value”: “bi-computer-payment”,
“label”: “Computer payment”,
“group”: “Security”
},
{
“value”: “bi-credit-card”,
“label”: “Credit card”,
“group”: “Security”
},
{
“value”: “bi-shield”,
“label”: “Shield”,
“group”: “Security”
}
],
“default”: “bi-customer-support”
},
{
“type”: “image_picker”,
“id”: “custom_icon”,
“label”: “Custom icon”,
“info”: “60 x 60px .png with transparency recommended”
},
{
“type”: “text”,
“id”: “title”,
“label”: “Heading”,
“default”: “Your title”
},
{
“type”: “richtext”,
“id”: “content”,
“label”: “Content”,
“default”: “
Short content about your store
”}
]
}
],
“default”: {
“blocks”: [
{
“type”: “item”,
“settings”: {
“icon”: “bi-delivery”,
“title”: “Free delivery worldwide”
}
},
{
“type”: “item”,
“settings”: {
“icon”: “bi-returns”,
“title”: “Satisfied or refunded”
}
},
{
“type”: “item”,
“settings”: {
“icon”: “bi-customer-support”,
“title”: “Top-notch support”
}
},
{
“type”: “item”,
“settings”: {
“icon”: “bi-secure-payment”,
“title”: “Secure payments”
}
}
]
}
}
{% endschema %}


