Shopify themes, liquid, logos, and UX
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
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>
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>
If my code worked Please accept that as solution.
Hey Community! As we jump into 2025, we want to give a big shout-out to all of you wh...
By JasonH Jan 7, 2025Hey Community! As the holiday season unfolds, we want to extend heartfelt thanks to a...
By JasonH Dec 6, 2024Dropshipping, a high-growth, $226 billion-dollar industry, remains a highly dynamic bus...
By JasonH Nov 27, 2024