1 / 8
Feb 2012

I have a product that is available with volume discounts, so the easiest way for me to set this up is to use a buy now button and append the &amount=value_you_want_to_pass to the querystring. I also offer a CD backup, and as far i can can tell, there isn't a way to pass two products with single buy now button. Is there an HTTP POST method that I could set these values in a form and pass to e-junkie?

  • created

    Feb '12
  • last reply

    Feb '12
  • 7

    replies

  • 1.3k

    views

  • 3

    users

  • 5

    links

Will bundling allow different quantities of each? Typically, if a group buys multiple licenses for my software and want to add a CD backup, they only want 1 CD. When I looked at the bundling option, my impression was that - in this scenario - the customer ordering 5 licenses would also get 5 CD's.

On

<br />
&lt;form accept-charset=&quot;UTF-8&quot; method=&quot;get&quot; action=&quot;<a href="https://www.e-junkie.com/ecom/gb.php" rel="nofollow" target="_blank">https://www.e-junkie.com/ecom/gb.php</a>&quot;&gt;<br />
<br />
&lt;!-- repeated fields for each cart item --&gt;<br />
&lt;input type=&quot;text&quot; name=&quot;quantity_array[0]&quot; maxlength=&quot;5&quot; value=&quot;1&quot; /&gt;<br />
&lt;input type=&quot;hidden&quot; name=&quot;ci_id_array[0]&quot; value=&quot;12345678&quot; /&gt; &lt;!-- value corresponds to ?? --&gt;<br />
&lt;input type=&quot;hidden&quot; name=&quot;sub_item_id_array[0]&quot; value=&quot;12345678&quot; /&gt;<br />
&lt;input type=&quot;hidden&quot; name=&quot;item_number_array[0]&quot; value=&quot;&quot; /&gt; &lt;!-- my product id --&gt;<br />
&lt;input type=&quot;hidden&quot; name=&quot;cart_item_price_array[0]&quot; value=&quot;&quot; /&gt;<br />
&lt;input type=&quot;hidden&quot; name=&quot;total_item_price_array[0]&quot; value=&quot;&quot; /&gt; &lt;!-- product price --&gt;<br />
&lt;input type=&quot;hidden&quot; name=&quot;prev_quantity_array[0]&quot; value=&quot;1&quot; /&gt; &lt;!-- user entered qty --&gt;<br />
<br />
&lt;!-- shipping fields --&gt;<br />
&lt;input type=&quot;hidden&quot; name=&quot;shp_mthd&quot; value=&quot;88&quot; /&gt;<br />
&lt;select name=&quot;to_country&quot; id=&quot;countryDD&quot; onchange=&quot;EJEJC_cntrdd2(true);&quot;&gt;<br />
&lt;input type=&quot;text&quot; name=&quot;zipcode&quot; id=&quot;fldZipcode&quot; maxlength=&quot;50&quot; value=&quot;&quot; /&gt;<br />
<br />
&lt;!-- non-repeated fields --&gt;<br />
&lt;input type=&quot;hidden&quot; name=&quot;cart_total&quot; value=&quot;&quot; /&gt; &lt;!-- total cost --&gt;<br />
&lt;input type=&quot;hidden&quot; name=&quot;min_cart_item_total&quot; value=&quot;0.00&quot; /&gt;<br />
&lt;input type=&quot;hidden&quot; name=&quot;cart_error_code&quot; value=&quot;0&quot; /&gt;<br />
&lt;input type=&quot;hidden&quot; name=&quot;page_ln&quot; value=&quot;en&quot; /&gt;<br />
&lt;input type=&quot;hidden&quot; name=&quot;shtx_calc_done&quot; value=&quot;true&quot; /&gt;<br />
&lt;input type=&quot;hidden&quot; name=&quot;shtx_calc_needed&quot; value=&quot;true&quot; /&gt; <br />
<br />
&lt;!-- checkout button code --&gt;<br />
onclick=&quot;EJEJC_checkout('client_id=1234&amp;cart_id=32099766&amp;cart_md5=3f3baa5cf8c366c587f610be19dbb3a2&amp;page_ln=en&amp;jsod=1&amp;1328448967','pp','');&quot;<br />

Unfortunately, I don't think that will work in this situation. (That is a cool feature, though.)



I have two conflicting requirements.



1. I need to calculate volume discounts and override the amount.

2. I need to allow orders with multiple products of different qualities.


1 will work with the Buy Now button overriding the price, and #2 is essentially what the cart is made for - but there it has no mechanism to override the price.



That's why I was delving into the form fields to see if I could create my own order form and pass the fields to e-junkie.com/ecom/gb.php?...

I think we may have started off on the wrong foot here and wound up trying to reinvent the wheel. The requirements you've described can be accomplished by using our Cart buttons (rather than Buy Nows), so you could take advantage our cart's standard discount and quantity features.



Add to Cart buttons would let buyers add various items to their cart order before they proceed to checkout for all items at once:

http://www.e-junkie.com/ej/help.buttons.cart.htm



You can configure any product with "Let buyer edit quantity" enabled, so the buyer can enter their preferred order quantity for each item in their cart.



You can configure automatic volume discounts for specific products using our discount settings documented on this help page:

http://www.e-junkie.com/ej/help.discounts.htm



E.g., in Seller Admin > Cart Discounts you would select the relevant product, leave the Discount Codes field blank (so the discount applies automatically to orders which meet the discount's Min. Item Qty./Total thresholds), set a Min. Item Qty. threshold (leave Min. Item Total and Max. Use Count blank), and specify how much to mark down that product's per-unit price when the Min. Item Qty. threshold is met.



You can also create a series of discounts with higher Min. Item Total thresholds and deeper per-unit price discounts. Discounts with higher min. thresholds would override those with lower thresholds. Just make sure you give each one a unique Discount Name, since that's how we distinguish one discount from another.

Oh, man (smacks forehead), that's too easy! I like easy, but it'd feel better if I hadn't spend so much time trying to figure this out. I've been using e-junkie since 2007, and I really wish I'd known about this ages ago. Thanks E-JunkieGuru.