Tabbed product descriptions
Important!
It is only necessary to add the code below to your theme if you are using a Version 2 or Version 1 theme. Users of Version 3, Version 4 and Version 5 themes do not need to install any code to use these features.
To create tabbed product descriptions you'll first need to install the app. To do this select INSTALL THIS APP.
from the menu. Find and select the 'Tabbed Descriptions' app and selectOnce the app is installed you'll be able to add up to 5 product descriptions for each product.
To output these product descriptions on your products' pages on your website you can use the variables shown below:
{{ product.description|raw }}
{{ product.description2|raw }}
{{ product.description3|raw }}
{{ product.description4|raw }}
{{ product.description5|raw }}
To add the relevant code you'll need to use the page editor for your live theme's files. Alternatively, if you don't want to add the code yourself, you can select request installation on the app installation page, and we will install the code for you for a small charge which is shown on the installation page.
However, simply adding these variables is not enough to display the tabs. You will also need to add CSS and JS to display them.
You can use an IF statement to ensure that a tab isn't displayed unless there is content entered for the description field you are referencing. For example:
{% if product.description3 %} {{ product.description3|raw }} {% endif %}
If you choose to have us install the app for you, then as part of the installation process we'll design how the tabbed descriptions will be displayed.