How to make wishlist work in "Catalog Mode"?

For general questions and discussions specific to the AbleCommerce 7.0 Asp.Net product.
Post Reply
bemara579
Lieutenant (LT)
Lieutenant (LT)
Posts: 63
Joined: Thu Feb 19, 2009 6:15 pm

How to make wishlist work in "Catalog Mode"?

Post by bemara579 » Tue Apr 14, 2009 4:48 pm

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?

User avatar
jmestep
AbleCommerce Angel
Posts: 8164
Joined: Sun Feb 29, 2004 8:04 pm
Location: Dayton, OH
Contact:

Re: How to make wishlist work in "Catalog Mode"?

Post by jmestep » Wed Apr 15, 2009 6:01 am

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.
Judy Estep
Web Developer
jestep@web2market.com
http://www.web2market.com
708-653-3100 x209
New search report plugin for business intelligence:
http://www.web2market.com/Search-Report ... -P154.aspx

Post Reply