I am trying to add a message under my checkout buttons (Google Checkout and Paypal) in the cart to say:



Don't have a Paypal or Google checkout account - checkout through Paypal and pay as a guest.



I already have added: function EJEJC_shown() {



as I have changed the cart header image.



I have tried adding the jQuery("#tdSell").attr line as follows:



jQuery("#tdSell").attr("innerHTML", "Don't have Paypal or Google Checkout? Choose Paypal and pay as a guest");



the above code appears immediately before, and on the line above the closing }



However the message is not showing in my cart.



I have tried clearing cookies and refreshing, but to no avail, any suggestions?

  • created

    May '12
  • last reply

    May '12
  • 1

    reply

  • 965

    views

  • 2

    users

This would be the complete cart customization code you should add to your View Cart code on every page, just before the "// -->" line in the standard View Cart code you obtained from Seller Admin:



function EJEJC_config() {

EJEJC_POSTCALL=true;

}

function EJEJC_shown() {

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

"Don't have Paypal or Google Checkout? Choose Paypal and pay as a guest");

}



If you're using the correct code and still find it isn't working in your page, please provide a link to your page, so we can have a look at what might be going on there.