Having a bit of trouble with this at the moment, any help would be GREATLY appreciated once again. I am trying to figure out how to add the star rating under the product title and/or the price, and I would also like to have “SAVE 40%” under or next to the sale price. Is anyone able to offer some much needed assistance please and thankyou. Store URL: https://prestigestorageco.com
- Add star rating to your Product page
Go to your Online store > Theme > Find the Theme that you’re using > Action > Edit Code
Search for product.liquid file (or product-template.liquid in some cases)
Then, find the following code in line (A):
{{ product.title }}
Copy this code snippet (B):
Insert the code snippet (B) under the above code line (A):
save now!
Please note that: product.liquid or product-template.liquid can be named differently due to a variety of themes.
For tag save 40%
dl.price.price--on-sale::after {
content: "SAVE 40%";
position: relative;
font-weight: BOLD;
top: 10px;
}
Add this css at the bottom of
Online Store->Theme->Edit code->Assets->theme.scss.liquid




