E-Junkie Forum http://www.e-junkie.com/bb/ E-Junkie Forum RSS en-us Copyright 2013, 19.5 Degrees. All rights reserved. webmaster@e-junkie.com webmaster@e-junkie.com Wed, 29 Jul 2009 11:32:22 GMT Sun, 26 May 2013 02:48:14 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/1414/pg/0#post10889 http://www.e-junkie.com/bb/topic/1414/pg/0#post10889 Wed, 29 Jul 2009 11:32:22 GMT
Tyson et al, I am now building my second site where check-boxes would make a massive difference - any chance of this happening any time soon?

At a guess, the ability to use checkboxes will add an additional ancillary item to the total order on every other checkout - that's really important.

Cheers,
P]]>
E-junkie Discussions; paulglad
Post #8 http://www.e-junkie.com/bb/topic/1414/pg/0#post10889 http://www.e-junkie.com/bb/topic/1414/pg/0#post10889 Mon, 27 Jul 2009 19:10:39 GMT E-junkie Discussions; TrainerMatt Post #7 http://www.e-junkie.com/bb/topic/1414/pg/0#post10889 http://www.e-junkie.com/bb/topic/1414/pg/0#post10889 Mon, 18 May 2009 20:15:47 GMT E-junkie Discussions; paulglad Post #6 http://www.e-junkie.com/bb/topic/1414/pg/0#post10889 http://www.e-junkie.com/bb/topic/1414/pg/0#post10889 Mon, 18 May 2009 19:58:56 GMT E-junkie Discussions; E-junkieGuru Post #5 http://www.e-junkie.com/bb/topic/1414/pg/0#post10889 http://www.e-junkie.com/bb/topic/1414/pg/0#post10889 Mon, 18 May 2009 17:48:30 GMT
i.e.:

<input type="hidden" name="on0" value="Color">
<input type=checkbox name="os0" value="Celadon">Celadon<br>
<input type=checkbox name="os0" value="Heliotrope">Heliotrope<br>
<input type=checkbox name="os0" value="Puce">Puce<br>
<input type=checkbox name="os0" value="Zinnwaldite">Zinnwaldite<br>]]>
E-junkie Discussions; paulglad
Post #4 http://www.e-junkie.com/bb/topic/1414/pg/0#post10889 http://www.e-junkie.com/bb/topic/1414/pg/0#post10889 Tue, 7 Apr 2009 21:25:42 GMT
ItemName C,23.00,,,Celadon,,
ItemName H,23.00,,,Heliotrope,,
ItemName P,23.00,,,Puce,,
ItemName Z,23.00,,,Zinnwaldite,,

(you'll see what the above pertains to when you enable Variants for your product).]]>
E-junkie Discussions; E-junkieGuru
Post #3 http://www.e-junkie.com/bb/topic/1414/pg/0#post10889 http://www.e-junkie.com/bb/topic/1414/pg/0#post10889 Tue, 7 Apr 2009 00:32:20 GMT
However, I have a product that needs 3 options and an open text box. From my testing only the first three variables will carry over into the cart? Even when you use the code generator?]]>
E-junkie Discussions; bzmillerboy
Post #2 http://www.e-junkie.com/bb/topic/1414/pg/0#post10889 http://www.e-junkie.com/bb/topic/1414/pg/0#post10889 Wed, 1 Oct 2008 19:31:16 GMT
<input type="hidden" name="on0" value="Color">
<select name="os0">
<option value="Celadon">Celadon
<option value="Heliotrope">Heliotrope
<option value="Puce">Puce
<option value="Zinnwaldite">Zinnwaldite
</select>

...and convert it into this:

<input type="hidden" name="on0" value="Color">
<input type=radio name="os0" value="Celadon">Celadon<br>
<input type=radio name="os0" value="Heliotrope">Heliotrope<br>
<input type=radio name="os0" value="Puce">Puce<br>
<input type=radio name="os0" value="Zinnwaldite">Zinnwaldite<br>]]>
E-junkie Discussions; E-junkieGuru
Post #1 http://www.e-junkie.com/bb/topic/1414/pg/0#post10889 http://www.e-junkie.com/bb/topic/1414/pg/0#post10889 Fri, 4 Jan 2008 07:17:29 GMT https://secure.groundspring.org/dn/index.php?id=2080)

I would like visitors to be able to select an amount, and select a project as a variant.

Below is the code I'm starting with from the "Add to Cart Button Code" (with my IDs taken out):

<form action="https://www.e-junkie.com/ecom/gb.php?c=cart&i=CODE&cl=###&ejc=2" target="ej_ejc" method="POST" accept-charset="UTF-8">
<span class="bodytxt">Amount</span>:<br/>
<select name="o1" size="1">
<option value="$25">$25</option>
<option value="$50">$50</option>
<option value="$100">$100</option>
<option value="$250">$250</option>
<option value="$500">$500</option>
<option value="$1000">$1000</option>
</select>
<br/>
<input type="hidden" name="on0" value="Project"/>
<span class="bodytxt">Project</span>:<br/>
<select name="os0" size="1">
<option value="Project 1">Project 1</option>
<option value="Project 2">Project 2</option>
<option value="Project 3">Project 3</option>
<option value="Project 4">Project 4</option>
<option value="Project 5">Project 5</option>
<option value="Project 6">Project 6</option>
<option value="Project 7">Project 7</option>
<option value="Project 8">Project 8</option>
</select>
<br/><br/>
<input type="image" src="https://www.e-junkie.com/ej/ej_add_to_cart.gif" border="0" alt="Add to Cart" class="ec_ejc_thkbx" onClick="javascript:return EJEJC_lc(this.parentNode);"/>
</form>


The follosing is what I've converted to use radio input forms, but It doesn't work. It always takes the last option in the radio button input groups as variables, no matter what is selected when I press the 'submit' button (for example $1000 and Project 8):

<form action="https://www.e-junkie.com/ecom/gb.php?c=cart&i=DON-GEN&cl=11769&ejc=2" target="ej_ejc" method="POST" accept-charset="UTF-8">
<span class="bodytxt">Amount:</span><br/>
<input name="o1" type="radio" value="$25" checked="checked" /> $25<br />
<input name="o1" type="radio" value="$50" /> $50<br />
<input name="o1" type="radio" value="$100" /> $100<br />
<input name="o1" type="radio" value="$250" /> $250<br />
<input name="o1" type="radio" value="$500" /> $500<br />
<input name="o1" type="radio" value="$1000" /> $1000<br />

<hr />

<input type="hidden" name="on0" value="Project"/>
Project:</span><br/>
<input name="os0" type="radio" value="Project 1" checked="checked" />Project 1<br />
<input name="os0" type="radio" value="Project 2" />Project 2<br />
<input name="os0" type="radio" value="Project 3" />Project 3<br />
<input name="os0" type="radio" value="Project 4" />Project 4<br />
<input name="os0" type="radio" value="Project 5" />Project 5<br />
<input name="os0" type="radio" value="Project 6" />Project 6<br />
<input name="os0" type="radio" value="Project 7" />Project 7<br />
<input name="os0" type="radio" value="Project 8" />Project 8<br />
<input name="" type="submit" onClick="javascript:return EJEJC_lc(this.parentNode);" />
<input type="image" src="https://www.e-junkie.com/ej/ej_add_to_cart.gif" border="0" alt="Add to Cart" class="ec_ejc_thkbx" onClick="javascript:return EJEJC_lc(this.parentNode);"/> -->
</form>

Can this be done, or do the o1 and os0 values always have to be submitted to ejunkie.com from a option select dropdown?]]>
E-junkie Discussions; collectiveeye