4 / 4
Mar 2011

Hi everyone. I have a question. How do I get a drop down box that lists my products (mp3's) like the one

on this website - http://www.soundclick.com/bands/default.cfm?bandID=972551



Is there an option here? I checked admin page, but couldn't find directions, only thing I saw was how to make single "add to cart" buttons. So if anybody knows how I can accomplish this, it would be greatly appreciated, thx!

  • created

    Feb '11
  • last reply

    Feb '11
  • 3

    replies

  • 1.1k

    views

  • 3

    users

  • 8

    links

Hello,



This is possible but it requires a customization of the button code we provide you, it's not a supported option within our system itself.



As a very basic overview, we place a unique link for each of your products within each different Add to Cart button. An experienced web developer could take those links and build them into a drop down menu so that the corresponding product is added to the shopping cart when it is selected in the menu instead of the normal method which would be to list a series of buttons for each product.



To find someone who can assist you with this kind of extra customization for your site we can recommend the developers listed here:

http://www.e-junkie.com/ej/developer-directory.htm

9 days later

Thanks for the info. I have tried to contact the developers, and none have responded yet. Does anybody know if there is a way to do this yourself? Thanks

I can provide some example code, which you might be able to figure out if you're already pretty handy with HTML. Suppose you have two products whose standard Add to Cart codes look like these:



<a href="https://www.e-junkie.com/ecom/gb.php?c=cart&i=XXXXXX&cl=156888&ejc=2" target="ejejc" class="ec_ejc_thkbx" onClick="javascript:return EJEJC_lc(this);"><img src="http://www.e-junkie.com/ej/ejadd_to_cart.gif" border="0" alt="Add to Cart"/></a>



<a href="https://www.e-junkie.com/ecom/gb.php?c=cart&i=YYYYYY&cl=156888&ejc=2" target="ejejc" class="ec_ejc_thkbx" onClick="javascript:return EJEJC_lc(this);"><img src="http://www.e-junkie.com/ej/ejadd_to_cart.gif" border="0" alt="Add to Cart"/></a>



...then offering both of those products for sale with a menu and single Add to Cart button would look like this:



<form action="https://www.e-junkie.com/ecom/gb.php?c=cart&cl=156888&ejc=2" target="ejejc" method="POST" accept-charset="UTF-8">

<select name="i">

<option value="XXXXXX">Some Item Name</option>

<option value="YYYYYY">Other Item Name</option>

</select><br>

<input src="http://www.e-junkie.com/ej/ejadd_to_cart.gif" alt="Add to Cart" class="ec_ejc_thkbx" onclick="javascript:return EJEJC_lc(this.parentNode);" border="0" type="image">

</form>