How can I add multiple product descriptions in Spark Theme version 2.4.2?

Hello! I am looking to add a line of code which will help me add multiple descriptions to my product pages. Currently, I have one. It is long, so I must place it at the bottom. However, I would like another description at the very top. I have a coder standing by to put this code into my HTML, but I am worried she might not be able to make the description customizable in the Shopify product menu page. Because of this, I am reaching out on the Shopify forums, so that you may provide me with the necessary line of code. I am using the Spark Theme version 2.4.2 if that helps. To clarify exactly what I would like, I would like another customizable description on my product page. Thank you for your time.

You dont need code for that:

  1. go to product page from admin side

  2. paste your product description

  3. turn the topics in the description that you want seperately into Heading 5.

  4. save it

  5. the descriptions will come divided under the topic you’ve put in a compact way.

Use your coder to check the backend of the product description which can be accessed by just clicking the </> button on the top right of the admin-side-productpage.

There are several methods.

For a separate, secondary description or synopsis make a product metafield definition(mfdef).

The namespace and key can be anything you want for example metafield.content.secondary_description or metafield.content.synopsis

Then for OS2.0 theme in the product page template settings add a custom-liquid block(or section) and use liquid to reference that mfdef. For example if you want a short description somewhere in the product form:

{{ product.metafields.content.synopsis }}

For other techniques using only 1 description in the rich text editor search forums for “split description”, and review your themes documentation for such features.

hi @TheModernGents1 follow this guide

Thank you very much for the concise and clear solution to my problem!!!