Link image and title on home page to a product

@isabellemaria

For this purpose you need to customize the theme files like featured-product.liquid like something i did below.

Online Store > Theme Edit > Edit Code > Section > featured-product.liquid

{%- when 'title' -%}
                ## 
                  {%- if product.title != blank -%}
                    {{ product.title | escape }}
                  {%- else -%}
                    {{ 'onboarding.product_title' | t }}
                  {%- endif -%}
                

////////////////to this

{%- when 'title' -%}
                ## 
			
                  {%- if product.title != blank -%}
                    {{ product.title | escape }}
                  {%- else -%}
                    {{ 'onboarding.product_title' | t }}
                  {%- endif -%}
		
                

1 Like