- Joined
- Mar 17, 2016
- Messages
- 182
- Likes
- 123
- Degree
- 1
I am suggesting some specific products, and my hypothesis is that I can increase my conversion rates and extend my cookie life from 24 hours to 90 days for a specific product added to a visitors cart. So instead of having a click here to vie this product on Amazon link, I want a button that automatically adds a product to a users cart, as if they had clicked the 'Add to Cart' button on Amazon's page.
I did some searching online, and found the following code to add to my wordpress site:
But when I add it, I get a form that looks like this
Instead of an output that would look like this
What am I doing wrong with my code, and what are your thoughts on the above strategy? Anyone tried it?
I did some searching online, and found the following code to add to my wordpress site:
HTML:
<form method="GET" action="https://www.amazon.com/gp/aws/cart/add.html">
<input type="hidden" name="AWSAccessKeyId" value="Access Key ID" /><br/>
<input type="hidden" name="AssociateTag" value="Associate Tag" /><br/>
<p>One Product<br/>
ASIN:<input type="text" name="ASIN.1"/><br/>
Quantity:<input type="text" name="Quantity.1"/><br/>
<p>Another Product<br/>
ASIN:<input type="text" name="ASIN.2"/><br/>
Quantity:<input type="text" name="Quantity.2"/><br/>
</p>
<input type="submit" name="add" value="add" />
</form>
But when I add it, I get a form that looks like this
Instead of an output that would look like this
What am I doing wrong with my code, and what are your thoughts on the above strategy? Anyone tried it?