Hello @lunaworks ! I had tried using this method but wasn’t able to find the img tag in the collage.liquid file, is this method still applicable for dawn theme 9.0.0? If not, could you see if you can find an updated solution, it will make a world of a difference in the usability of my site, thank you!
Hello @edc1 , can you send a screenshot of what you’ve tried so far, and how it looks?
Hello! @lunaworks Thank you and apologies for the late response, I have little experience coding, only copy and pasting snippets from time to time and mild css edits. I haven’t tried anything as of yet. If you would like I can paste the default collage.liquid file here.
The issue is with the “Settings” array “settings”; [ …code
You close your array before putting the new json in there. Put a comma after the closing } of the image_picker json, then the closing ] comes
Thank you! I tried every single combination of brackets and commas EXCEPT for that, but that did it!
I’m having a similar issue with the images being the wrong size. If I move the , they are no longer clickable, but if I put it in the correct spot, the images are a mess. I have previously customized the code for my image sizes to load full resolution photos into the collage. Here’s what I’m working with:
{% endif %}
{%- if block.settings.image != blank -%}
{%- capture sizes -%}(min-width: {{ settings.page_width }}px) {% if section.blocks.size == 1 %}calc({{ settings.page_width }}px - 100px){% else %}{{ settings.page_width | minus: 100 | times: 0.67 | round }}px{% endif %}, (min-width: 750px){% if section.blocks.size == 1 %} calc(100vw - 100px){% else %} 500px{% endif %}, calc(100vw - 30px){%- endcapture -%}
{{
block.settings.image
| image_url: width: 3000
| image_tag: loading: ‘lazy’, sizes: sizes, widths: ‘550, 720, 990, 1100, 1500, 2200, 3000’
}}
{%- else -%}
{{ ‘image’ | placeholder_svg_tag: ‘placeholder-svg placeholder’ }}
{%- endif -%}
Is this still an issue?
Yes, I can have giant clickable images, or correctly-sized, non-clickable images but it seems I can’t figure out how to make them both correctly-sized AND clickable.
I am having the same issue.
Hey @lunaworks
I’m trying witha collage with 3 images and I get it set up except all links go back to home.
Is it possible to add 3 different links to 3 different images within 1 collage on Dawn v10.0.0.0?
Thanks!
Can you post a screenshot on how you’re adding the links for the 3 images?
Thanks for your prompt response. I actually managed to get it to work after many tries. I had to move up the href line even further basically wrapping up the whole “collage-card” section. Now works well also with 3 images.
Thanks a lot!
…
…
Did you get all 3 images to link to 3 separate links? Mine is still linking me to my home page. I’ve followed all of the above!
@Emily96 @lunaworks I’m SO grateful if you can take a look at the below please!
Can you send a screenshot of your customizer showing the url you’re putting in the setting?
Hello @mderrats , I recently encountered a similar issue and managed to solve it. The problem lies in the inconsistency between the id used in the schema and the anchor tag.
In your liquid code, you’re using block.settings.img_link, while in the schema, it’s referred to as image_link. To resolve this, make sure to synchronize both terms to be the same. This should resolve the issue you’re facing.
Thank you!!! This is what worked for me ![]()
Hi Thank you so much for answering this! I attempted to follow the instructions above and am receiving JSON error. Can you please assist me to correct or identify my mistake?
difficult to help with screenshots.
you can post you code or DM ![]()
Hey @Lwrenmarie , put a comma after the “]” , so currently you have
{
“type”:”url”,
“id”: “image_link”,
“label”:”Image URL”
},
]
Update it to this
{
“type”:”url”,
“id”: “image_link”,
“label”:”Image URL”
}
], // add the comma here instead





