This help page explains how to use our cart customization code:
http://www.e-junkie.com/ej/help.custom-cart.htm
If you're using the WP E-junkie plugin, that already adds the script portions of our View Cart code to every page automatically, so you can just add cart customization code to each page manually (e.g., perhaps in a common footer area), where it must be enclosed in SCRIPT tags like so:
<script language="javascript" type="text/javascript">
function EJEJC_config() {
EJEJC_POSTCALL=true;
}
function EJEJC_shown() {
jQuery("#country1").attr("innerHTML", "Ship to Country");
jQuery("#state1").attr("innerHTML", "ZIP/Postal Code");
jQuery("#state2").attr("innerHTML", "Update Cart after entering");
jQuery("#dscnt_cd").attr("innerHTML", "Discount Code");
jQuery("#discount2").attr("innerHTML", "Update Cart after entering");
jQuery("#btnContShop").attr("value", "Continue Shopping");
jQuery("#btnUpdtCart").attr("value", "Update Cart");
jQuery("#EJEJC_closeWindowButton").attr("innerHTML", "<b>Close</b>");
}
</script>