Hello, i am using Paypal pro to take payments but i want to be able to change the "charge me now" button. Is that possible?
To change our purchase buttons (Buy Now or View/Add to Cart), please see this help page:http://www.e-junkie.com/ej/help.custom.purchase-buttons.htmTo change our checkout button images in the cart, please see our Cart Customization help page here:http://www.e-junkie.com/ej/help.custom-cart.htmFor example, to change the PayPal and Credit Card checkout buttons in our cart, you would add this to your View Cart code on every page, just before the "// -->" line in our standard code:function EJEJC_config() {EJEJC_POSTCALL=true;}function EJEJC_shown() {// This changes the PayPal checkout button:jQuery("#btnPP").attr("src", "http://yourdomain/yourimage");// This changes the Credit Card checkout button:jQuery("#btnCC").attr("src", "http://yourdomain/yourimage");}Of course, "http://yourdomain/yourimage" would be replaced by the URLs of your respective replacement button images.
Share and learn in the E-junkie community.