Adding a product to a wishlist when buying the product is di

For general questions and discussions specific to the AbleCommerce 7.0 Asp.Net product.
Post Reply
DFresh
Lieutenant, Jr. Grade (LT JG)
Lieutenant, Jr. Grade (LT JG)
Posts: 33
Joined: Fri Jan 04, 2008 11:12 am

Adding a product to a wishlist when buying the product is di

Post by DFresh » Fri Apr 25, 2008 9:21 am

I was wondering if it 's possible to enable the "add to wishlist" function when a product is not available for purchase. For instance, when you enable inventory tracking for a product and the inventory is set to zero and you do not allow backordering, the "add to wishlist" button is disabled. Is there anyway to enable this and then when the product comes available, customers who have added the product to their wishlist get notified? Anyone have insight on this?

Thanks!

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

Re: Adding a product to a wishlist when buying the product is di

Post by jmestep » Fri Apr 25, 2008 3:37 pm

Try this:
In the BuyProductDialog.ascx.cs


private void HideAddToBasket()
{
AddToBasketButton.Visible = false;
AddToWishlistButton.Visible = false;
rowQuantity.Visible = false;
}

Change to this: AddToWishlistButton.Visible=true; for that line of code only
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

DFresh
Lieutenant, Jr. Grade (LT JG)
Lieutenant, Jr. Grade (LT JG)
Posts: 33
Joined: Fri Jan 04, 2008 11:12 am

Re: Adding a product to a wishlist when buying the product is di

Post by DFresh » Sat Apr 26, 2008 5:55 pm

Excellent. I'll give that a try. Thank you!

Post Reply