How can I create a multi-line plain text box in Dawn theme settings?

In the theme settings, I am wanting to have a simple textbox that is an unformatted textbox. Similar to the richtext type but without any of the formatting.

In the rich-text.liquid file, richtext boxes are referenced like this as an example;

"type": "richtext",
          "id": "text",
          "default": "

Share information about your brand with your customers. Describe a product, make announcements, or welcome customers to your store.

",
          "label": "t:sections.rich-text.blocks.text.settings.text.label"

Is there an option for type that is a plain text textbox with multiple lines (i.e. not a single line type text)

1 Like

@Sneaky

yes just change it

"type": "textarea",
          "id": "text",
          "default": "

Share information about your brand with your customers. Describe a product, make announcements, or welcome customers to your store.

",
          "label": "t:sections.rich-text.blocks.text.settings.text.label"
1 Like

Thanks

Is there a way to add more lines to the text area?

1 Like

@Sneaky

its my pleasure to help us