troubleshooting-article TR007-copy

{% comment %} Troubleshooting / Help – Rich layout + TOC + Helpful + FAQ rows (6) {% endcomment %}
{% if section.settings.show_breadcrumb %}
{{ section.settings.home_label | default: 'Home' }}  /  {{ section.settings.breadcrumb_label | default: 'Support' }}
{% endif %}

{{ section.settings.title | default: page.title }}

{% if section.settings.intro != blank %}

{{ section.settings.intro }}

{% endif %}
{% if section.settings.video_url != blank or section.settings.mp4_url != blank %}

{{ section.settings.video_heading | default: 'Install Video' }}

{% if section.settings.video_url != blank %} {% else %} {% endif %}
{% endif %} {% if section.settings.manual_url != blank %}

{{ section.settings.manual_heading | default: 'Download Manual (PDF)' }}

{% if section.settings.manual_note != blank %}

{{ section.settings.manual_note }}

{% endif %}

{{ section.settings.manual_btn_text | default: 'Download PDF Manual' }}

{% endif %} {% for block in section.blocks %} {% case block.type %} {% when 'heading' %}

{{ block.settings.title }}

{% if block.settings.text != blank %}
{{ block.settings.text }}
{% endif %} {% when 'faq' %}
{{ block.settings.question }}
{{ block.settings.answer }}
{% when 'faq_rows' %}
{{ block.settings.question }}
{% for i in (1..6) %} {% assign key_type = 'row' | append: i | append: '_type' %} {% assign row_type = block.settings[key_type] %} {% if row_type == 'paragraph' %} {% assign key_txt = 'row' | append: i | append: '_text' %} {% if block.settings[key_txt] != blank %}{{ block.settings[key_txt] }}{% endif %} {% elsif row_type == 'image' %} {% assign key_img = 'row' | append: i | append: '_image' %} {% if block.settings[key_img] != blank %}

image {{ i }}

{% endif %} {% elsif row_type == 'youtube' %} {% assign key_yt = 'row' | append: i | append: '_youtube' %} {% if block.settings[key_yt] != blank %}
{% endif %} {% elsif row_type == 'mp4' %} {% assign key_mp4 = 'row' | append: i | append: '_mp4' %} {% assign key_pst = 'row' | append: i | append: '_poster' %} {% if block.settings[key_mp4] != blank %} {% endif %} {% endif %} {% endfor %}
{% when 'link_card' %}

{{ block.settings.title }}

{% if block.settings.text != blank %}

{{ block.settings.text }}

{% endif %} {% if block.settings.link != blank %}

{{ block.settings.link_btn | default: 'View' }}

{% endif %}
{% when 'html' %}
{% if block.settings.title != blank %}

{{ block.settings.title }}

{% endif %}
{{ block.settings.custom_html }}
{% endcase %} {% endfor %} {% if section.settings.show_contact %}

{{ section.settings.contact_heading | default: 'Contact Us' }}

{{ section.settings.label_email | default: 'Email:' }} {{ section.settings.email | default: 'support@example.com' }}

{% if section.settings.phone != blank %}

{{ section.settings.label_phone | default: 'Phone:' }} {{ section.settings.phone }}

{% endif %} {% if section.settings.hours != blank %}

{{ section.settings.label_hours | default: 'Hours:' }} {{ section.settings.hours }}

{% endif %}
{% endif %} {% if section.settings.enable_helpful %}

{{ section.settings.helpful_title | default: 'Was this article helpful?' }}

{% endif %}
{% schema %} { "name": "Troubleshooting", "settings": [ { "type": "text", "id": "title", "label": "Page Title" }, { "type": "textarea", "id": "intro", "label": "Intro" }, { "type": "checkbox", "id": "show_breadcrumb", "label": "Show breadcrumb", "default": true }, { "type": "text", "id": "home_label", "label": "Breadcrumb: Home", "default": "Home" }, { "type": "text", "id": "breadcrumb_label", "label": "Breadcrumb middle", "default": "Support" }, { "type": "color", "id": "accent", "label": "Accent color", "default": "#d61b1b" }, { "type": "range", "id": "title_size", "min": 22, "max": 48, "step": 1, "unit": "px", "label": "Title font size", "default": 34 }, { "type": "range", "id": "body_size", "min": 14, "max": 20, "step": 1, "unit": "px", "label": "Body font size", "default": 16 }, { "type": "range", "id": "wrap_width", "min": 900, "max": 1400, "step": 10, "unit": "px", "label": "Max content width", "default": 1200 }, { "type": "range", "id": "block_gap", "min": 8, "max": 28, "step": 1, "unit": "px", "label": "Block spacing", "default": 16 }, { "type": "select", "id": "toc_side", "label": "TOC position", "default": "right", "options": [ { "value": "right", "label": "Right" }, { "value": "left", "label": "Left" } ]}, { "type": "text", "id": "toc_title", "label": "TOC title", "default": "On this page" }, { "type": "text", "id": "video_heading", "label": "Video title", "default": "Install Video" }, { "type": "url", "id": "video_url", "label": "YouTube/Vimeo URL" }, { "type": "url", "id": "mp4_url", "label": "MP4 URL (Shopify Files)" }, { "type": "image_picker", "id": "poster", "label": "Video poster (for MP4)" }, { "type": "text", "id": "manual_heading", "label": "Manual title", "default": "Download Manual (PDF)" }, { "type": "url", "id": "manual_url", "label": "Manual PDF URL" }, { "type": "textarea", "id": "manual_note", "label": "Manual note (optional)" }, { "type": "text", "id": "manual_btn_text", "label": "Manual button text", "default": "Download PDF Manual" }, { "type": "checkbox", "id": "show_contact", "label": "Show contact card", "default": true }, { "type": "text", "id": "contact_heading", "label": "Contact title", "default": "Contact Us" }, { "type": "text", "id": "label_email", "label": "Label: Email", "default": "Email:" }, { "type": "text", "id": "label_phone", "label": "Label: Phone", "default": "Phone:" }, { "type": "text", "id": "label_hours", "label": "Label: Hours", "default": "Hours:" }, { "type": "text", "id": "email", "label": "Email", "default": "support@example.com" }, { "type": "text", "id": "phone", "label": "Phone" }, { "type": "text", "id": "hours", "label": "Hours" }, { "type": "checkbox", "id": "enable_helpful", "label": "Enable Helpful widget", "default": true }, { "type": "text", "id": "helpful_title", "label": "Helpful title", "default": "Was this article helpful?" }, { "type": "text", "id": "helpful_yes", "label": "Helpful: Yes", "default": "Yes" }, { "type": "text", "id": "helpful_no", "label": "Helpful: No", "default": "No" }, { "type": "text", "id": "helpful_thanks", "label": "Helpful: Thank you", "default": "Thanks for your feedback!" } ], "blocks": [ { "type": "heading", "name": "H2 Section", "settings": [ { "type": "text", "id": "title", "label": "Title" }, { "type": "richtext", "id": "text", "label": "Optional description" } ] }, { "type": "faq", "name": "FAQ simple", "settings": [ { "type": "text", "id": "question", "label": "Question" }, { "type": "richtext", "id": "answer", "label": "Answer" } ] }, { "type": "faq_rows", "name": "FAQ rows (6)", "settings": [ { "type": "text", "id": "question", "label": "Question" }, { "type": "range", "id": "text_size", "min": 14, "max": 22, "step": 1, "unit": "px", "label": "Text size", "default": 16 }, { "type": "select", "id": "line_height", "label": "Line height", "default": "1.6", "options": [ { "value": "1.4", "label": "1.4" }, { "value": "1.6", "label": "1.6" }, { "value": "1.8", "label": "1.8" }, { "value": "2.0", "label": "2.0" } ]}, { "type": "range", "id": "paragraph_gap", "min": 4, "max": 24, "step": 1, "unit": "px", "label": "Paragraph gap", "default": 10 }, { "type": "range", "id": "image_width", "min": 40, "max": 100, "step": 5, "unit": "%", "label": "Media width", "default": 100 }, { "type": "select", "id": "align", "label": "Media align", "default": "left", "options": [ { "value": "left", "label": "Left" }, { "value": "center", "label": "Center" } ]}, { "type": "select", "id": "row1_type", "label": "Row 1 type", "default": "paragraph", "options":[{"value":"paragraph","label":"Paragraph"},{"value":"image","label":"Image"},{"value":"youtube","label":"YouTube/Vimeo"},{"value":"mp4","label":"MP4"}] }, { "type": "richtext", "id": "row1_text", "label": "Row 1 text" }, { "type": "image_picker", "id": "row1_image", "label": "Row 1 image" }, { "type": "text", "id": "row1_youtube", "label": "Row 1 YouTube/Vimeo URL" }, { "type": "url", "id": "row1_mp4", "label": "Row 1 MP4 URL" }, { "type": "image_picker", "id": "row1_poster", "label": "Row 1 MP4 poster" }, { "type": "select", "id": "row2_type", "label": "Row 2 type", "default": "paragraph", "options":[{"value":"paragraph","label":"Paragraph"},{"value":"image","label":"Image"},{"value":"youtube","label":"YouTube/Vimeo"},{"value":"mp4","label":"MP4"}] }, { "type": "richtext", "id": "row2_text", "label": "Row 2 text" }, { "type": "image_picker", "id": "row2_image", "label": "Row 2 image" }, { "type": "text", "id": "row2_youtube", "label": "Row 2 YouTube/Vimeo URL" }, { "type": "url", "id": "row2_mp4", "label": "Row 2 MP4 URL" }, { "type": "image_picker", "id": "row2_poster", "label": "Row 2 MP4 poster" }, { "type": "select", "id": "row3_type", "label": "Row 3 type", "default": "paragraph", "options":[{"value":"paragraph","label":"Paragraph"},{"value":"image","label":"Image"},{"value":"youtube","label":"YouTube/Vimeo"},{"value":"mp4","label":"MP4"}] }, { "type": "richtext", "id": "row3_text", "label": "Row 3 text" }, { "type": "image_picker", "id": "row3_image", "label": "Row 3 image" }, { "type": "text", "id": "row3_youtube", "label": "Row 3 YouTube/Vimeo URL" }, { "type": "url", "id": "row3_mp4", "label": "Row 3 MP4 URL" }, { "type": "image_picker", "id": "row3_poster", "label": "Row 3 MP4 poster" }, { "type": "select", "id": "row4_type", "label": "Row 4 type", "default": "paragraph", "options":[{"value":"paragraph","label":"Paragraph"},{"value":"image","label":"Image"},{"value":"youtube","label":"YouTube/Vimeo"},{"value":"mp4","label":"MP4"}] }, { "type": "richtext", "id": "row4_text", "label": "Row 4 text" }, { "type": "image_picker", "id": "row4_image", "label": "Row 4 image" }, { "type": "text", "id": "row4_youtube", "label": "Row 4 YouTube/Vimeo URL" }, { "type": "url", "id": "row4_mp4", "label": "Row 4 MP4 URL" }, { "type": "image_picker", "id": "row4_poster", "label": "Row 4 MP4 poster" }, { "type": "select", "id": "row5_type", "label": "Row 5 type", "default": "paragraph", "options":[{"value":"paragraph","label":"Paragraph"},{"value":"image","label":"Image"},{"value":"youtube","label":"YouTube/Vimeo"},{"value":"mp4","label":"MP4"}] }, { "type": "richtext", "id": "row5_text", "label": "Row 5 text" }, { "type": "image_picker", "id": "row5_image", "label": "Row 5 image" }, { "type": "text", "id": "row5_youtube", "label": "Row 5 YouTube/Vimeo URL" }, { "type": "url", "id": "row5_mp4", "label": "Row 5 MP4 URL" }, { "type": "image_picker", "id": "row5_poster", "label": "Row 5 MP4 poster" }, { "type": "select", "id": "row6_type", "label": "Row 6 type", "default": "paragraph", "options":[{"value":"paragraph","label":"Paragraph"},{"value":"image","label":"Image"},{"value":"youtube","label":"YouTube/Vimeo"},{"value":"mp4","label":"MP4"}] }, { "type": "richtext", "id": "row6_text", "label": "Row 6 text" }, { "type": "image_picker", "id": "row6_image", "label": "Row 6 image" }, { "type": "text", "id": "row6_youtube", "label": "Row 6 YouTube/Vimeo URL" }, { "type": "url", "id": "row6_mp4", "label": "Row 6 MP4 URL" }, { "type": "image_picker", "id": "row6_poster", "label": "Row 6 MP4 poster" } ] }, { "type": "link_card", "name": "Link card", "settings": [ { "type": "text", "id": "title", "label": "Title" }, { "type": "textarea", "id": "text", "label": "Description" }, { "type": "text", "id": "link_btn", "label": "Button text" }, { "type": "url", "id": "link", "label": "URL" } ] }, { "type": "html", "name": "Custom HTML", "settings": [ { "type": "text", "id": "title", "label": "Optional title" }, { "type": "richtext", "id": "custom_html", "label": "Content" } ] } ], "max_blocks": 50 } {% endschema %}