Has anyone experienced issues with tabs can’t show the image and glitching on their mobile devices lately? I’m facing this peculiar problem where the tabs seem to be acting up. Has anyone encountered a similar glitch, and if so, how did you go about resolving it? Any insights or suggestions would be greatly appreciated! Thanks in advance.
Can you provide link to your store and also a screenshot showing the glicth?
Here is the website link https://frontierthebrand.com , it glitch on mobile phone like when you click on it, it won’t active the tab or sometimes even duplicate the tab instead.
The site is password protected. Can you provide password to the store?
is there any chance you can help me to recreate the tab section ? here is the existing code :
{%- if section.settings.divider -%}
{%- if block.settings.title != blank -%}
{%- if block.settings.button_label != blank -%}
{%- endif -%}{%- if section.settings.layout == ‘right’ -%}
{%- if block.settings.image != blank -%}
-
{%- for block in section.blocks -%}
- {{ block.settings.tab }} {% endfor %}
{%- endif -%}
-
{%- for block in section.blocks -%}
- {{ block.settings.tab }} {% endfor %}
{%- if section.settings.divider -%}
{% schema %}
{
“name”: “About Us section”,
“settings”: [
{
“type”: “select”,
“id”: “button_style”,
“label”: “t:sections.text-and-image.settings.button_style.label”,
“default”: “primary”,
“options”: [
{
“value”: “primary”,
“label”: “t:sections.text-and-image.settings.button_style.options.primary.label”
},
{
“value”: “secondary”,
“label”: “t:sections.text-and-image.settings.button_style.options.secondary.label”
}
]
},
{
“type”: “select”,
“id”: “align_text”,
“label”: “t:sections.text-and-image.settings.align_text.label”,
“default”: “left”,
“options”: [
{
“value”: “left”,
“label”: “t:sections.text-and-image.settings.align_text.options.left.label”
},
{
“value”: “center”,
“label”: “t:sections.text-and-image.settings.align_text.options.center.label”
},
{
“value”: “right”,
“label”: “t:sections.text-and-image.settings.align_text.options.right.label”
}
]
},
{
“type”: “select”,
“id”: “layout”,
“label”: “t:sections.text-and-image.settings.layout.label”,
“default”: “right”,
“options”: [
{
“value”: “left”,
“label”: “t:sections.text-and-image.settings.layout.options.left.label”
},
{
“value”: “right”,
“label”: “t:sections.text-and-image.settings.layout.options.right.label”
}
]
},
{
“type”: “checkbox”,
“id”: “image_full_screen_height”,
“label”: “Make Image Full Height”,
“default”: false
},
{
“type”: “checkbox”,
“id”: “divider”,
“label”: “t:sections.text-and-image.settings.divider.label”,
“default”: false
},
{
“type”: “checkbox”,
“id”: “autoplay”,
“label”: “Autoplay Slider”,
“default”: false
},
{
“type”: “number”,
“id”: “slider-speed”,
“label”: “Slider rotate after”,
“default”: 5
}
],
“blocks”: [
{
“type”: “tab”,
“name”: “Tabs”,
“settings”: [
{
“type”: “text”,
“id”: “tab”,
“label”: “Tab”
},
{
“type”: “image_picker”,
“id”: “image”,
“label”: “t:sections.text-and-image.settings.image.label”
},
{
“type”: “image_picker”,
“id”: “image2”,
“label”: “t:sections.text-and-image.settings.image2.label”
},
{
“type”: “image_picker”,
“id”: “image3”,
“label”: “Image 3”
},
{
“type”: “image_picker”,
“id”: “image4”,
“label”: “Image 4”
},
{
“type”: “range”,
“id”: “image_width”,
“label”: “t:sections.text-and-image.settings.image_width.label”,
“default”: 700,
“min”: 200,
“max”: 700,
“step”: 10,
“unit”: “px”
},
{
“type”: “text”,
“id”: “subtitle”,
“label”: “t:sections.text-and-image.settings.subtitle.label”
},
{
“type”: “text”,
“id”: “title”,
“label”: “t:sections.text-and-image.settings.title.label”,
“default”: “Image with text”
},
{
“type”: “richtext”,
“id”: “text”,
“label”: “t:sections.text-and-image.settings.text.label”,
“default”: “
Pair large text with an image to tell a story, explain a detail about your product, or describe a new promotion.
”},
{
“type”: “text”,
“id”: “button_label”,
“label”: “t:sections.text-and-image.settings.button_label.label”
},
{
“type”: “url”,
“id”: “button_link”,
“label”: “t:sections.text-and-image.settings.button_link.label”
}
]
}
],
“presets”: [
{
“name”: “About Us section”
}
]
}
{% endschema %}
{% style %}
{% if section.settings.image_full_screen_height %}
@media only screen and (min-width: 768px){
.custom-image-height_desktop–{{ section.id }}{
height: 81vh;
margin-top: auto;
}
}
{% endif %}
{% endstyle %}