"Buy Now" button link
-
- Ensign (ENS)
- Posts: 13
- Joined: Mon Dec 08, 2008 1:10 pm
- Location: Rolling Meadows, IL
- Contact:
"Buy Now" button link
Is there any way I can insert img/code onto a html page or email that would create a link that would function as a buy now button and take the user into the cart with the item added? We have the functionality on the actual product page, but I would like to incorporate it into our emails and landing pages. If there is a direct way to do it great or if there is a way to have a redirecting page automatically add the item, etc… Any ideas or help is greatly appreciated. Thanks!
_________________
Gary Eimerman
Train Signal
Global Leader in Professional Computer Training
http://www.trainsignal.com
http://garyeimerman.com
Gary Eimerman
Train Signal
Global Leader in Professional Computer Training
http://www.trainsignal.com
http://garyeimerman.com
Re: "Buy Now" button link
Please read following topic about adding a product to cart via external entity.
http://wiki.ablecommerce.com/index.php/ ... nal_entity
Secondly if you are sending custom Email to customer then you will create your Email Template and can send Email manually. Read following topics about how to send manual Emails that support your custom NVeclocity variables or custom data.
Finally you have specified product parameter for product data then you can build add to cart link as below
http://wiki.ablecommerce.com/index.php/ ... nal_entity
Secondly if you are sending custom Email to customer then you will create your Email Template and can send Email manually. Read following topics about how to send manual Emails that support your custom NVeclocity variables or custom data.
Finally you have specified product parameter for product data then you can build add to cart link as below
Code: Select all
<a href="${store.StoreUrl}/AddToBasket.aspx?ProductId=${product.ProductId}">Add To Cart</a>