James - the first place to start looking would be in your product.liquid template. In that template could be lots of code, or nearly none. In the case where there is very little code look for statements that use {% section %} or {% include %} tags as these indicate other files you'll need to look at.
{% section %} will be files in the section folder of your theme.
{% include %} will be files in the snippet folder of your theme.
In most case you should be looking for this:
{{ product.description }}
^ That's the output of the product description into the page. You would add you custom text below that.
If you really can't find this you might need to start posting some code - or at the very least the name of the theme you're using.
Whatever you add right after {{ product.description }} will appear on all your product pages, given that you are in a template.
So for example :
{{ product.description }} <p></p> <p>Free shipping on all orders!</p> <p>Easy returns</p> <p>...</p>
There are cleaner methods to add extra content after the product description but if you only have a couple of lines to add, you can do it this way.
@MaxDesign wrote:Whatever you add right after {{ product.description }} will appear on all your product pages, given that you are in a template.
So for example :
{{ product.description }} <p></p> <p>Free shipping on all orders!</p> <p>Easy returns</p> <p>...</p>There are cleaner methods to add extra content after the product description but if you only have a couple of lines to add, you can do it this way.
Hi thank you for the example, I have a few symbols and a couple of paragraphs with headers I'd like to add, are there any secrets to make it work in a cleaner format?
User | Count |
---|---|
431 | |
200 | |
146 | |
57 | |
44 |