Solved
HEX code not updating on code
I am dispalying product reviews using this code:
{% with maxReviewCountPerProduct=2 starHex='121212' %} {% with productId=event.ProductID|slugify %}
{% for key, reviews in feeds.product_reviews.items %}{% if productId == key %}{% for review in reviews %}{% if maxReviewCountPerProduct == 0 or forloop.counter <= maxReviewCountPerProduct%}
![]() ![]() ![]() ![]() ![]() | |
| {{ review.title }} | |
| |
| {{ review.displayName }} |
{% endif %}{% endfor %}{% endif %}{% endfor %}
{% endwith %} {% endwith %}
i want to update the star Hex colour to either #efb54c or #ecbdb2 however when I do this it breaks the star icons and displays broken image icons
Can anyone let me know if i am missing something obvious here and why this wont work?

