I have created a list display type on my category page. I am wondering how could I add a qty field next to the add to cart so customers can easily add multiple of a single product. Is this even possible?
Announcement
Collapse
No announcement yet.
Category page "add to cart"
Collapse
X
-
I was also interested in adding the quantity field next to the add to cart on the category page. It would be similar to the quick view or item view.
Comment
-
Hi Michael,
Are you looking for something like this? http://www.toocutebeads.com/925-Ster...gs_c_3126.html
Comment
-
Not sure if this will post to the forum properly, but you need to wrap your Items area in a form
Look for The <! -- Items ----> Tag
<form enctype="multipart/form-data" method="post" action="add_cart.asp" name="add">
Then in the item template code block you need to add form inputs,
Look for <!-- Item _Template 0 ---->
<input type="hidden" name="item_id" value="[catalogid]" />
<input type="text" name="qty-[counter]" value="0" onfocus="if
(this.value==this.defaultValue) this.value=''" />
<input type="submit" name="Add" value="Add +" />
This is all in the Category_0 Template.
Hope this helps
Comment
-
Thanks for replying to this, could you help me get it imported into this page? http://sid-com.3dcartstores.com/Holl...ree_c_108.html
I tried putting the html you sent earlier and also what you just sent. Didn't seem to work, so I put it back to the original
Comment
Comment