Can’t seem to figure how to make the NOTES expanded all the time.
This is what customer sees. We want the Note box to always be ‘open’.
I believe this is the code for it below. I tried to change
cart.general.hide_note to cart.general.show_note on line 213
but that didn’t work. Customers need to see the notes box because they always miss
the note telling them they have to click on it to open it.
Any suggestions would be awesome. Thanks
Hi @donnamac
i can see its working now you solved it
best regard
I’m having this problem in the new version of the theme I’m getting ready to install.
Not the ‘live’ version on our website, so, I have not resolved this yet.
Thanks for checking.
I’m working on a new version of the theme. Not the live one.
Have not resolved it yet and would appreciate any advice.
Thx
Ok send me theme name and possible to add me staff: jasoliyabrijesh123@gmail.com
will do direct code
Best regard
Ah…thanks for that offer. I really just want direction as to where to look and what to do.
thanks anyway
I played around with it and figured it out.
1 Like
Hi, can you please share how did you solve this? I have the same problem
Can you please share how did you solve this?
I can’t remember the process I used to get here…but this is what I did and it worked.
Only if you are comfortable editing your code.
I do not have a ‘shopify’ developed theme.
But I looked into each module that had ‘cart’ in the title.
I found this code in a module called ‘main-cart-liquid’.
{% if section.settings.cart_notes_enable %}
{%- if cart.note == blank -%}
{{ ‘cart.general.show_note’ | t }}
{%- else -%}
{{ ‘cart.general.hide_note’ | t }}
{%- endif -%}
{{ ‘cart.general.note’ | t }}
{{ cart.note }}
I changed the ‘hide note’ line to ‘show note’ (the one highlighted above).
I’m not a liquid coder, but played around with it enough…and it worked. So I just went with it.
So far so good.
I try things to see if anything works…so definitely no guarantee here…but maybe you can find some similar code.
Good luck
Mine is different.. Please help..
{%- if settings.show_cart_note -%}
{{ 'sections.cart.note' | t }}
{% render 'icon-caret' %}
{{ 'sections.cart.note' | t }}
{{ cart.note }}
{%- endif -%}