Clickable items in cart

How can you make items in cart clickable?

Hi @cabis, thanks for reaching out.

One solution for that is to customize the component item-line, and replace the h2 with a link, so this:
<h2 class="snipcart-item-line__title snipcart__font--xlarge snipcart__font--secondary snipcart__font--black"> {{ item.name }} </h2>

Becomes something like this:
<a :href="item.url" class="snipcart-item-line__title snipcart__font--xlarge snipcart__font--secondary snipcart__font--black" > {{ item.name }} </a>

Is this what you’re looking for?

Thanks.