After change of your store theme to a new one which differs from radiance, the theme update should be performed by pressing the Start Updating button on the Update Shopify Theme page. The theme update success message will appear at the end of the installation.
If HTML structure of your theme does not match the radiance theme structure installed by default, the following code should be added to the place where you would like to insert the Add to wishlist button and the My Wishlist link:
the HTML code for displaying the Add to Wishlist button in the product lists blocks:
<p id="p-wishlist" class="p-float">
<input type="hidden" value="{{product.id}}" id="{{product.handle}}" />
</p>
For instance, for the radiance template it looks like here
the HTML code for displaying the Add to Wishlist button on the product page:
<div class="clearfix"></div><p id="p-wishlist-product" class="p-float"></p><div class="clearfix"></div>
For instance, for the radiance template it looks like here
the HTML code for displaying the My Wishlist link in the menu:
<tagName id="wishlist-link"></tagName>
where tagName must be replaced to the appropriate HTML tag name, e.g. li, div and etc. I.e. in your template it looks like here:
<li id="wishlist-link"></li>
For instance, for the radiance template it looks like here
Comments