Is there a way to globally remove the wishlist feature without manyally removing the objects from the pages? Of cource, this will allow it to be easily turned back on. I checked the appConfigs and nothing seems to do that. Thanks in advance.
Is there a way to globally remove the wishlist feature without manyally removing the objects from the pages? Of cource, this will allow it to be easily turned back on. I checked the appConfigs and nothing seems to do that. Thanks in advance.
If you set the AppConfig ShowWishButtons to false, all you would need to do is remove/comment out the Wishlist link from the skin template. Customers could still navigate directly to wishlist.aspx but there wouldn't be anything for them to do/see there.
Can you explain in more detail about the template link? If you are talking about a master page thing or something that cascades it’s ok, but i can’t go to all the pages that have wishlist and change them manually... That will then be a pain if i ever want to use it. If that’s the case I will just rebuild the pages, add the param, and add logic to show or not but I was hoping that was done already
If you find this line in your template.ascx file:
and comment it out:C#/VB.NET Code:
<a class="wishlist" href="wishlist.aspx">Your Wishlist</a>
It will no longer display the wishlist link at the top of the page!C#/VB.NET Code:
<!--<a class="wishlist" href="wishlist.aspx">Your Wishlist</a>-->
Setting the AppConfig will remove the 'Add to Wishlist' button from product pages too!
Last edited by Mike The Last Boyscout; 02-22-2010 at 01:22 PM.
Ahh, got it. Thanks!
S