Difference between revisions of "How to disable Wishlist"

From AbleCommerce Wiki
Jump to: navigation, search
(New page: '''How to disable Wishlist feature in AbleCommerce''' Here are the detailed steps to disable Wishlist feature in AbleCommerce. * Login to your store as merchant * Go to Administration > W...)
(No difference)

Revision as of 10:35, 1 July 2010

How to disable Wishlist feature in AbleCommerce Here are the detailed steps to disable Wishlist feature in AbleCommerce.

  • Login to your store as merchant
  • Go to Administration > Website > Content and Layout page
  • Edit Standard Header scriptlet and remove following code line from it.
<a href="~/Members/MyWishlist.aspx" class="wishlist">Wishlist</a>
  • Go to your Website/ConLib/BuyProductDialog.ascx.cs file and locate
AddToWishlistButton.Visible = true;

and update it as

AddToWishlistButton.Visible = false;