Is it possible to insert a message into the cart that the customer will see while adding items to the cart? A message such as "all orders placed this week will not ship unitl next monday", or anything like that?



Also, I didn't notice that there is a place where the customer can put a note such as a greeting to put on a gift card to go with their order. Is there a comment box in the cart?



Thank you!

  • created

    Jan '11
  • last reply

    Jan '11
  • 1

    reply

  • 848

    views

  • 2

    users

  • 1

    link

To add a text note to the cart, you can put these lines in your View Cart code on every page, just before the "// -->" line in the standard code you got from Seller Admin:



function EJEJC_config() {

EJEJC_POSTCALL=true;

}

function EJEJC_shown() {

jQuery("#tdPmnt").attr("innerHTML",

"NOTE: Orders placed this week will ship next Monday.");

}



The cart has no built-in way to accept a comment for the order in general, but you can configure a product using Variations to add a text field to that product's Add to Cart button code:

1http://www.e-junkie.com/ej/help.variants.htm1