Shopify themes, liquid, logos, and UX
We're moving the community! Starting July 7, the current community will be read-only for approx. 2 weeks. You can browse content, but posting will be temporarily unavailable. Learn more
Hello,
I am trying to figure out how to figure out this error message when trying to implement this fix.
Error Message: (see below)
Code from Step 5 for Adding Product Recommendations to Debut theme
https://help.shopify.com/en/manual/online-store/themes/themes-by-shopify/vintage-themes/customizing-...
Let me know if you have any questions?
Thanks a bunch!
Jennifer
Solved! Go to the solution
This is an accepted solution.
It should be code below: missing one "="
{% if recommendations.intent == 'related' %}
You can refer document for Operators in liquid here https://shopify.github.io/liquid/basics/operators/
And you should be update
{% elsif recommendations.intent = 'complementary' %}
to code below as well
{% elsif recommendations.intent == 'complementary' %}
Hope can help
If you find my reply helpful, please hit Like and Mark as Solution
EBOOST
This is an accepted solution.
It should be code below: missing one "="
{% if recommendations.intent == 'related' %}
You can refer document for Operators in liquid here https://shopify.github.io/liquid/basics/operators/
And you should be update
{% elsif recommendations.intent = 'complementary' %}
to code below as well
{% elsif recommendations.intent == 'complementary' %}
Hope can help
If you find my reply helpful, please hit Like and Mark as Solution
EBOOST
Thank you so much! That removed the error message 🙂