How to change product variant in wishlist drawer (Dawn Theme)

How to change product variant in wishlist drawer (Dawn Theme)

Jayesh-Agarwal
Shopify Partner
39 0 7

Hello

I am using a wishlist app called iwish: Wishlist. When we are clicking on heart icon in products / Collections which has sizes (like kurti) to wishlist, automatically 1st size is getting selected. and there is no option to change the size in wishlist drawer. In drawer instead of variant title there should be option to change variant incase there are more than 1 variant in a product like size.

My website url - www.jagstore.in

Screenshot_20250109-112908.jpg

Wishlist Drawer script:

<li class="iwi**bleep**em">
{{form}}
<div class="iwishImgWrap">
<a href="{{productLink}}"><img src="{{productImgSrc}}" alt="" /></a>
</div>
<div class="iwishMeta">
<div class="iwishMeta-title"><a href="{{productLink}}">{{productTitle}}</a></div>
<div class="iwishMeta-variant-title">{{variantTitle}}</div>
<div class="iwishMeta-price">{{productPrice}}</div>
<div><input class="iwishBuyBtn" type="submit" value="Add to Cart" name="add"></div>
<div><a class="iwishRemoveBtn" href="{{removeWishLink}}" title="Remove from wishlist">Remove</a></div>
</div>
{{/form}}
</li>

Replies 2 (2)

Test91
Shopify Partner
65 7 15

Hi @Jayesh-Agarwal 
Please try this and tell me if it works or not
<li class="iwi**bleep**em">
{{form}}
<div class="iwishImgWrap">
<a href="{{productLink}}">
<img src="{{productImgSrc}}" alt="" />
</a>
</div>
<div class="iwishMeta">
<div class="iwishMeta-title">
<a href="{{productLink}}">{{productTitle}}</a>
</div>
<div class="iwishMeta-variant-title">
<label for="variantSelect_{{productId}}">Choose Variant:</label>
<select id="variantSelect_{{productId}}" name="id">
{{#each productVariants}}
<option value="{{id}}" {{#if isSelected}}selected{{/if}}>
{{variantTitle}} - {{variantPrice}}
</option>
{{/each}}
</select>
</div>
<div class="iwishMeta-price">{{productPrice}}</div>
<div>
<input class="iwishBuyBtn" type="submit" value="Add to Cart" name="add">
</div>
<div>
<a class="iwishRemoveBtn" href="{{removeWishLink}}" title="Remove from wishlist">Remove</a>
</div>
</div>
{{/form}}
</li>

Test91
Shopify Partner
65 7 15

If my code worked Please accept that as solution.