1 / 3
May 2014

Hi there,



How can I create an upsell before checkout?



Many thanks

  • created

    May '14
  • last reply

    May '14
  • 2

    replies

  • 1.4k

    views

  • 3

    users

  • 4

    links

It is possible to add your own custom HTML into the shopping cart before checkout, this can even be used to display product buttons along with images to create an upsell item that can be added from within the cart before checkout. You would need to handle the extra HTML yourself but the details on how to customize our cart to include that extra code can be found here:

7http://www.e-junkie.com/ej/help.custom-cart.htm7



If you aren't sure how to handle the extra coding that is something that you can hire outside developers for, since the programming necessary falls outside what we can directly support. Experienced developers who are already familiar with or cart can be found here:

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

It can easily be done if you know some basic html and a little css.



Your up-sell info would go inside the area I labelled "YOUR HTML GOES HERE". Your custom html needs to be on a single line (no line breaks) and wrapped with quotes.



function EJEJC_lc(th) { return false; }

function EJEJC_config() {

EJEJC_BGCOLOR = "#000";

EJEJC_OPACITY = 60;

EJEJC_POSTCALL=true;

}

function EJEJC_shown() {

jQuery("#imgHeader").attr("src", "/images/MyNewHeader.png");

ejejc_jQuery("#tdSell").attr("innerHTML","YOUR HTML GOES HERE");

}



Sample:

ejejc_jQuery("#tdSell").attr("innerHTML","<p>What others have also purchased</p>");



Check out post: 3http://www.e-junkie.com/bb/topic/66453





See a working example at www.jumpstartbikes.com5



Hopefully that helps.