Dawn theme multi-column images link

I’m on the dawn theme I have multi columns and want to have the images to be able to be clicked on to go straight to the product.

don’t want the link with the arrow

thanks

In file sections/multicolumn.liquid
Replace below code


                    {%- capture sizes -%}(min-width: 990px) {% if section.blocks.size <= 2 %}710px{% else %}550px{% endif %}, (min-width: 750px) {% if section.blocks.size == 1 %}710px{% else %}550px{% endif %}, calc(100vw - 30px){%- endcapture -%}
                   
                     {{ block.settings.image | image_url: width: 1420 | image_tag:
                      loading: 'lazy',
                      sizes: sizes,
                      widths: '275, 550, 710, 1420',
                      class: 'multicolumn-card__image'
                    }}
                    
                  

To

{% if  block.settings.link != blank %}{% endif %}
                

                    {%- capture sizes -%}(min-width: 990px) {% if section.blocks.size <= 2 %}710px{% else %}550px{% endif %}, (min-width: 750px) {% if section.blocks.size == 1 %}710px{% else %}550px{% endif %}, calc(100vw - 30px){%- endcapture -%}
                   
                     {{ block.settings.image | image_url: width: 1420 | image_tag:
                      loading: 'lazy',
                      sizes: sizes,
                      widths: '275, 550, 710, 1420',
                      class: 'multicolumn-card__image'
                    }}
                    
                  

                       {% if  block.settings.link != blank %} {% endif %}

Although, it is good practice to create separate section for this
Thanks!

1 Like