Add description under "CONTACT US" title

Hello,

I’m trying to add a description under the “CONTACT US” title.

{%- if section.settings.title != blank -%}> > {%- endif -%}> > > {%- assign form_id = ‘contact-’ | append: section.id -%}> {%- form ‘contact’, id: form_id -%}> > {%- if form.posted_successfully? -%}>

{{ ‘contact.form.post_success’ | t }}>

{%- endif -%}> > {{ form.errors | default_errors }}> > >

{%- if section.settings.show_phone -%}> > > {%- endif -%}> > > > > > > {% comment %}> Remove the following three lines of code to remove the note> about being protected by Google’s reCAPTCHA service.> By removing it, the small reCAPTCHA widget will appear in the> bottom right corner of the page.> {% endcomment %}> {{ ‘shopify.online_store.spam_detection.disclaimer_html’ | t }}> > {%- endform -%}>

{% schema %}> {> “name”: “Contact form”,> “settings”: [> {> “type”: “paragraph”,> “content”: “All submissions are sent to the customer email address of your store. Learn more.”> },> {> “type”: “text”,> “id”: “title”,> “label”: “Title”,> “default”: “Contact us”> },> {> “type”: “checkbox”,> “id”: “show_phone”,> “label”: “Show phone number”> },> {> “type”: “checkbox”,> “id”: “narrow_column”,> “label”: “Narrow column”,> “default”: true> }> ],> “presets”: [{> “name”: “Contact form”,> “category”: “Store information”> }]> }> {% endschema %}

That’s the code that I have

If someone can find a solution

Thank you

Hey!

Between the closing tag and closing tag you can add your text :

{%- if section.settings.title != blank -%}

{{ section.settings.title }}

Hello this is my short description under title !

{%- endif -%}

Hey, thanks for your response but it seems that it hasn’t worked

Yesss probably because your title is blank :

{%- if section.settings.title != blank -%}