I started work on a site and I’m finding it really challenging to update because there are dozens of elements with generic names. For instance, I have a section called “Big Banners” and under it there are 8 elements, all called “Banner”.
Is there any way to rename these? It would be SUPER helpful if they could have meaningful names like “Cheesecake Banner” or “4th Of July Banner”.
Hello @DoofusMcGee ,
You can try to follow these steps:
Go to Online Store → Themes → Actions → Edit code
Go to Sections → big-banners.liquid file
Modify the code within the loop to update the names of the banners like this:
{% for banner in section.blocks %}
{% assign banner_name = banner.settings.banner_name %}
## {{ banner_name }}
{% endfor %}
Save changes
Hope this can help.
Transcy