Add Short Description to Product Page in Motion Theme

I want to add a short description to the product page. I’m using the latest version of the Motion theme. I created a metafield from Shopify settings but it is not showing on the Shopify customizer. How can I add a short description?

Hiii @taha-najam97
Don’t select multi-line text for short description
Please select single-line text from metafield

1 Like

Will I be able to add multiple lines in the single-line text?

I resolved it though.

open the main-product.liquid file in the Sections folder and change the following codes to accept multi-line text meta fields as a possible workaround and see if that helps:

{> “type”: “text”,> “name”: “Text”,> “settings”: [> {> “type”: “text”,> “id”: “text”,> “default”: “Text block”,> “label”: “Text”> }> ]> },
to

{> “type”: “text”,> “name”: “Text”,> “settings”: [> {> “type”: “richtext”,> “id”: “text”,> *“default”: "

Text block

",*> “label”: “Text”> }> ]> },
Then click Save.