Hello
I found the fix to linking the featured product title!
Added this code to ‘title’ in featured product.liquid section as well;
{%- if product.title != blank -%} {{ product.title | escape }} {%- else -%} {{ 'onboarding.product_title' | t }} {%- endif -%}
I added a reference to product URL. I also added a specific class product__title-href because your probably are going to remove the hyperlink underline.
I added this CSS code at the end of file section-main-product.css
a.product__title-href {
text-decoration: none;
}
Perfect! End result is I have both featured product image and title (without the underline) linked to product page
Thankyou!