March 3, 2025

How to Add a Second Product Description in Shopify

Arrow pointing left
back to blog

about

Learn the easy way to add a second product description in Shopify to help your products stand out and generate more sales.

the author

Adam Ritchie
Ecommerce Contributor

share this post

Want to add a second product description in Shopify? 

To implement this custom feature, you’ll need to either edit the Liquid code of your Shopify theme or take advantage of a third-party app.

Below, we’ll walk you through each step of these two solutions:

Building an online store has never been easierShogun’s user-friendly visual editor allows you to customize every single aspect of your Shopify storefront.Get started now

Modifying Your Theme’s Code To Add a Second Product Description

Imagine this scenario: you have exceptionally high standards for manufacturing your products, but you’re having trouble highlighting this fact in the product description without making the description too long. 

In addition to simply looking awkward on the page, the length of your product description is sometimes pushing the color options down below the fold, so visitors can’t see them without scrolling down — and if visitors aren’t immediately aware that their favorite color is available, you might miss out on some sales

Lengthy product descriptions can be a serious issue for user experience.

By breaking up one product description into multiple sections, we can provide the people who visit our store with a better shopping experience. 

The description for each product in your catalog can be accessed through the Shopify admin:

  • Log in to your Shopify account and select the “Products” option in the left sidebar of the main Shopify control panel. 
  • Select the product you would like to edit. 
  • You can use the “Description” field in these settings to add or edit a description for the product. 
Descriptions can be added in the product settings page.

That’s easy enough if you only want a single product description displayed. But there’s only one “Description” field available here — if you want to add two descriptions, things get a little more complicated.

In that case, you’ll need to dig into the code. Adding a second product description will require you to edit the HTML of this “Description” field, and then you’ll need to make some corresponding edits to your theme files.

Let’s start with the “Description” field. In the toolbar at the top of this field, you’ll find that the rightmost option is labeled “Show HTML” — select it. Then, enter the following line of code:


<!--SPLIT-->

Insert your primary product description above this line of code and your second product description below it. And don’t forget to save your changes.

You’ll need to edit the HTML of the “Description” field in your product settings in order to add a second description.

Now it’s time to edit your theme files:

  • Select the sales channel that you would like to customize in the left sidebar of the main Shopify control panel. 
  • Open the “…” dropdown menu next to the theme you’re currently using, then select “Edit code”. 
  • Open the “sections” folder. 
Go to the “sections” folder in your theme files.

In the sections folder, you’ll find the code for all the parts that make up your product pages. For this example, we’ll only need to edit the “main-product.liquid” file, but depending on where you want your second product description to be located, you may also need to make edits to other files here, such as “related-products.liquid”.

It’s also worth mentioning that we’re using Shopify’s default Dawn theme for this example — if you’re using another theme, the file names and code that you need to edit may be slightly different. But even in that case, the process is quite similar and you will likely be able to figure out how to add your second description using the instructions below.

With those caveats now established, let’s go back to the “sections” folder and open the “main-product.liquid” file. Search for the following code:

<div class="product__description rte quick-add-hidden" {{ block.shopify_attributes }}>
     {{ product.description }}
</div>

And replace it with this code:

<div class="product__description rte quick-add-hidden" {{ block.shopify_attributes }}>
     {% if product.description contains "<!--SPLIT-->" %}
     {{ product.description | split: "<!--SPLIT-->" | first }}
     {%else%}
     {{ product.description }}
     {% endif %}
</div>

This code will display your primary product description (all the text above the “<!–SPLIT–>” line in the product’s “Description” field) in the usual spot where product descriptions are located on your store.

This code will display your primary product description in the usual spot where product descriptions are located on your store.

For your second product description, you’ll first need to determine where you want it to be displayed on the page. Then, you must figure out which part of your theme code corresponds to that exact location. 

This may take a little trial and error — one helpful technique is to add a single line of text like “TEST” to the part of the code that looks like where you want your second product description to go.  

You can add a line like “TEST” to your “main-product.liquid” file to help determine where you should insert the code for your second product description.

After adding your “TEST” line, save your changes to the code and take a look at the live version of the page. If “TEST” appears where you want your second product description to be displayed, then you’ll know that you’ve identified the correct place in your code for it. If not, keep trying until you get it right.

Look at the live version of your store to see where the “TEST” line is being displayed.

Make sure to delete your “TEST” lines from the code once you’re done.

For this example, we want our second product description to be right at the end of the part of the page that represents the “main-product.liquid” file. So, we’re going to add the following code just before the </section> tag on this file, but again, where you should add this code will depend on where exactly you want your second product description to be located:

{% if product.description contains "<!--SPLIT-->" %}
     <div class="product__description rte quick-add-hidden" {{ block.shopify_attributes }}>
     {{ product.description | split: "<!--SPLIT-->" | last }}
     </div>
{%endif%}

Save your changes.

Save your changes to the “main-product.liquid” file.

On the live version of the page, you’ll now see your second product description displayed in the spot you chose for it in addition to your primary product description displayed in its usual spot. 

Both of your product descriptions will now be displayed on the live version of your site.

Adding a Second Product Description Without Code Using Shogun

Shogun allows you to add a second product description without touching a single line of code. But first, you’ll need to import any pages that you want to edit from Shopify into Shogun:

  • After downloading and installing Shogun, select the “Apps” option in the left sidebar of the main Shopify control panel. 
  • Open Shogun. 
  • Go to the “Pages” section of the Shogun app. Here, you’ll see two tabs: “Shogun” and “Shopify”. 
  • Open the “Shopify” tab — this will show you all the pages on your Shopify store that haven’t yet been imported into Shogun. Select the “Product” option in the page type dropdown menu, then click on the “Import page” button next to the product page you would like to import. 
  • Choose whichever import layout option you prefer, then select “Import”.
You need to import Shopify pages into Shogun before you can edit them.

Once the product page has been imported, adding a second description is as easy as 1-2-3:

  • Go back to the “Pages” section of the Shogun app. In the “Shogun” tab, you’ll find the page that you just imported — click on it to open up Shogun’s visual editor. 
  • Click on the “Elements” icon in the left sidebar of the visual editor (it’s the one that looks like a plus sign inside of a circle) to open the element library. 
  • Click and hold on the “Text” option in the element library, then drag it over to wherever you want your second product description to be located.

That’s it! And once your new product description has been added, you’ll be able to fully customize the styling however you want. Shogun gives you thousands of options for the font, and you can adjust the text size, text color, letter spacing, and much more.

Shogun's visual editor makes it easy to add and edit a second product description for your Shopify store.

There are many ways that you could benefit from this feature. For example, you can use your second product description to:

  • Boost SEO: There may be several keywords that you’d like to include on your product page for search engine optimization purposes. A second product description will allow you to use more keywords without adding any extra bloat to your primary product description. 
  • Go over ingredients, materials, and sustainability practices: It may take a decent number of words to adequately explain what your products are made with or how they are made — but if this information gives you a quality or sustainability advantage over your competitors, it’s well worth including on the product page.
  • Provide customer testimonials: Featuring some positive quotes from previous customers will help convince prospective new customers that your product is truly worth purchasing. There likely isn’t enough room for such social proof in the primary product description at the top of the page, but you may be able to find a good spot for it somewhere down below.

And since Shogun allows you to set up your second product description quickly, you’ll have more time to deal with everything else that goes into running your online store.

Building an online store has never been easierShogun’s user-friendly visual editor allows you to customize every single aspect of your Shopify storefront.Get started now

You might also enjoy

Get started for free

Get hands on with everything you need to grow your business with a comprehensive suite of tools.
Start now
Arrow pointing up and to the right Arrow pointing up and to the right