Almost every client I work with has 100+ assets and the customizer doesnt allow simple text searching when browsing image options. Instead, many clients end up reloading the asset over and over again...
No content to show
User Activity
03-20-2024
Include is deprecated, try render.
This is an older thread but using Shopify Flow (now available for regular stores along with Plus) might do the trick here. You can send HTTP requests based on tags, updates, etc that also trigger other backend options. You can submit variables like x...
11-29-2023
Experiencing the same. Running the same script we did before BFCM (which had no errors) - seeing this memory error now but when I try to debug, none of the production errors show.
Maybe store the ID as a metafield?
04-21-2023
I just ran into this - I think its because my theme has both theme.css and theme.css.liquid and can't handle it. Created a custom css file and included it after the original style sheet. I'm able to push changes via Github but they arent capturing in...
04-21-2023
You could potentially have a blog post metafield with that created on date and sort via the field values - currently working on a dropdown sort for this on Impulse theme as well
Hey Shopify, I've been a partner/theme developer for many years now and am happy to see the branding updates! The one missing social icon that I encounter in almost every client use case (especially on themes) is Linkedin and it seems to still be mis...
02-03-2022
You can't currently drag inside of a block but you could add a dropdown where there are different layout styles for the contents in the block that change the css, snippet, etc based on selection.
You can rearrange the order of variants inside the product page - they will always appear in the order they are unless you do some liquid code on the product-options section to change it
08-12-2021
You can do this by calling out a forloop inside the block: {%- assign loop = "1,2,3,4" | split: ',' -%} {% if loop.size > 0 %} {% for item in loop %} {% capture index %}{{ forloop.index }}{% endcapture %} {% comment %} Add number to ...