Page 1 of 1
How to make wishlist work in "Catalog Mode"?
Posted: Tue Apr 14, 2009 4:48 pm
by bemara579
My store is currently in "Catalog Mode" in the Configure->Store setting. So people cannot purchase anything, but I want them to still be able to add products to their wishlist, even if they can not buy. Anyone know how to do this?
Re: How to make wishlist work in "Catalog Mode"?
Posted: Wed Apr 15, 2009 6:01 am
by jmestep
You would have to locate code like this snippet from the ConLib/BuyProductDialog.ascx.cs
private void HideAddToBasket()
{
AddToBasketButton.Visible = false;
AddToWishlistButton.Visible = false;
rowQuantity.Visible = false;
}
Change AddToWishlistButton.Visible=true;
There might be other changes you would have to make, but this would give you a starting point.