Lost income due to COVID-19? E-junkie is providing 1 year free accounts to sell anything, anywhere. Click Here for more details.

E-junkie Help >

After uploading a custom logo, cart does not show the logo.

You can upload a custom logo/header image in Seller Admin > Manage Seller Account > Edit Preferences > Upload Your Logo. This only adds a custom logo/header to your checkout pages (for payment processors which support it), E-junkie-generated thank-you, Bio, and Shop pages, and the "fallback" version of our cart that opens a new window/tab to display the cart whenever our standard overlay-style cart cannot be displayed "inside" your page -- e.g., if the buyer is using a mobile device or has disabled JavaScript in their browser, or if you're using the non-JavaScript version of our button codes, or if your page is missing your View Cart button code.

There are technical reasons why we cannot display any custom images in your overlay-style cart from our end. However, if you are using our classic cart design, you can accomplish that yourself by adding the following lines to each page where you are using our View Cart code, just before the // --> line in the standard code we issue:

function EJEJC_config() {
EJEJC_POSTCALL=true;
}
function EJEJC_shown() {
jQuery("#imgHeader").attr("src", "http://www.yoursite.com/path/to/logo.jpg");
}

If you are already using function EJEJC_config(){} in order to customize our classic cart, then just add any new lines shown above which are missing in the code you already have.