E-Junkie Forum http://www.e-junkie.com/bb/ E-Junkie Forum RSS en-us Copyright 2012, 19.5 Degrees. All rights reserved. webmaster@e-junkie.com webmaster@e-junkie.com Tue, 31 Jan 2012 01:18:01 GMT Fri, 10 Feb 2012 16:48:13 GMT 681 E-JUNKIE 5 E-Junkie Forum http://www.e-junkie.com/bb/ http://www.e-junkie.com/ej/logo.gif 290 104 Post #9 http://www.e-junkie.com/bb/topic/3668/pg/0#post20197 http://www.e-junkie.com/bb/topic/3668/pg/0#post20197 Tue, 31 Jan 2012 01:18:01 GMT E-junkie Discussions; macsolvers Post #8 http://www.e-junkie.com/bb/topic/3668/pg/0#post20197 http://www.e-junkie.com/bb/topic/3668/pg/0#post20197 Mon, 30 Jan 2012 23:29:10 GMT
We don't have any way to set a maximum quantity that each buyer can order, but you might consider adding some custom text/HTML to your cart reminding them that you can only accept orders of up to 9 units per product. Just add the following lines to your View Cart code, just before the "// -->" line in the standard code you got from Seller Admin:

function EJEJC_config() {
EJEJC_POSTCALL=true;
}
function EJEJC_shown() {
"You can order up to a <b>max. qty. of 9 units</i> per product");
}

Another approach you might consider would be having a Buy Now button that bypasses the cart and takes the buyer directly to instant checkout for just one product at a time. To provide a qty. selection menu for 1-9 units of this product, you can use this code (where XXXXXX would be your product's Item Number):

<form action="https://www.e-junkie.com/ecom/gb.php?i=XXXXXX&c=single&cl=200346" method="POST" accept-charset="UTF-8" target="ejejcsingle">
Quantity:<br>
<select name="quantity">
<option value="1">1
<option value="2">2
<option value="3">3
<option value="4">4
<option value="5">5
<option value="6">6
<option value="7">7
<option value="8">8
<option value="9">9
</select><br>
<input type="image" src="http://www.e-junkie.com/ej/x-click-butcc.gif" border="0" alt="Buy Now"/></form>]]>
E-junkie Discussions; E-junkieGuru
Post #7 http://www.e-junkie.com/bb/topic/3668/pg/0#post20197 http://www.e-junkie.com/bb/topic/3668/pg/0#post20197 Mon, 30 Jan 2012 03:52:35 GMT E-junkie Discussions; macsolvers Post #6 http://www.e-junkie.com/bb/topic/3668/pg/0#post20197 http://www.e-junkie.com/bb/topic/3668/pg/0#post20197 Mon, 30 Jan 2012 02:21:07 GMT E-junkie Discussions; macsolvers Post #5 http://www.e-junkie.com/bb/topic/3668/pg/0#post20197 http://www.e-junkie.com/bb/topic/3668/pg/0#post20197 Tue, 1 Sep 2009 02:09:39 GMT
If you want to set an initial default order size, say 2 units, you can add &quantity=2 to your Add to Cart button URL, so when the buyer clicks that button the first time, they'll start with 2 units of that item already in their cart.

You can also combine that with disabling "Let buyer edit quantity" in the product's settings, so continuing with the above example, clicking the Add to Cart button would add 2 units of that item to the cart, and the buyer would be unable to alter that quantity.]]>
E-junkie Discussions; E-junkieGuru
Post #4 http://www.e-junkie.com/bb/topic/3668/pg/0#post20197 http://www.e-junkie.com/bb/topic/3668/pg/0#post20197 Mon, 31 Aug 2009 07:55:30 GMT
So the only way to increase the quantity , is manually ?

Thanks 4 your reply.]]>
E-junkie Discussions; James
Post #3 http://www.e-junkie.com/bb/topic/3668/pg/0#post20197 http://www.e-junkie.com/bb/topic/3668/pg/0#post20197 Sun, 30 Aug 2009 20:04:00 GMT E-junkie Discussions; E-junkieChef Post #2 http://www.e-junkie.com/bb/topic/3668/pg/0#post20197 http://www.e-junkie.com/bb/topic/3668/pg/0#post20197 Sun, 30 Aug 2009 17:49:29 GMT E-junkie Discussions; James Post #1 http://www.e-junkie.com/bb/topic/3668/pg/0#post20197 http://www.e-junkie.com/bb/topic/3668/pg/0#post20197 Sun, 30 Aug 2009 17:43:58 GMT
When i click add to cart button on my site - the product is added to the cart - no problems. However if i go to another page or even stay on that page and click it again - to add a second - it doesn't come up. It shows just 1, and so the user has to add the quantity themselves. This didn't use to happen... someone could click on an item add it to cart - conttinue shopping, add the same item to cart later and it would then show 2 ect ect.

That has just stopped working. Any ideas why? Is it the coding?]]>
E-junkie Discussions; James