Wishlist button outside of BuyProductDialog

For general questions and discussions specific to the AbleCommerce 7.0 Asp.Net product.
Post Reply
webmaz
Lieutenant (LT)
Lieutenant (LT)
Posts: 52
Joined: Wed Apr 14, 2010 3:57 pm

Wishlist button outside of BuyProductDialog

Post by webmaz » Fri Apr 22, 2011 1:57 pm

How can I place a Wishlist button somewhere outside of BuyProductDialog.ascx?
I'd like to have the add to cart button and the rest of the content in the BuyProductDialog at the top of the Show Product 1 layout and then place only the wishlist button near the bottom of the page.

Is this possible?

euroluxantiques
Commander (CMDR)
Commander (CMDR)
Posts: 118
Joined: Sat Dec 20, 2008 11:27 pm

Re: Wishlist button outside of BuyProductDialog

Post by euroluxantiques » Sun Apr 24, 2011 6:51 pm

For our site, I didn't want to show the Add to Wishlist button at all. Using the same concept, you could move it wherever you want using css. Example:

table.buyProductForm input[value="Add to Wishlist"]
{
position:relative;
top:100px;
left:100px
}

Change the top and left parameters to position the button where you want. The css position:relative means that the button will be positioned RELATIVE to where it otherwise would have been. Play around with this, and I think you should be able to do what you want with it.

webmaz
Lieutenant (LT)
Lieutenant (LT)
Posts: 52
Joined: Wed Apr 14, 2010 3:57 pm

Re: Wishlist button outside of BuyProductDialog

Post by webmaz » Mon Apr 25, 2011 10:45 am

Thanks for your suggestion, but the CSS code you provided is not doing anything on my site.

Post Reply