We've got a slight improvement in the recommended minicart syntax, which I just posted here:
http://www.e-junkie.com/bb/topic/3086/pg/1#post18426
For the particular sample link you mentioned, and I presume you want the minicart link to actually display the cart, this would be the minicart code added to your standard View Cart code:
function EJEJC_config() {
EJEJC_POSTCALL=true;
}
function EJEJC_shown() {
if (items== null) {items = 0};
jQuery("#itemsInCart").attr("innerHTML",
"<a href='https://www.e-junkie.com/ecom/gb.php?c=cart&cl=XXXXXX&ejc=2' target='ejejc' class='ec_ejc_thkbx' onClick='javascript:return EJEJC_lc(this);'>lorum ipsum "+items+" Items, £"+EJEJC_cartamt().toFixed(2)+" whatever</A>");
}
The XXXXXX would be your E-junkie client ID, or for FFC you'd use this URL instead:
https://www.e-junkie.com/ecom/fgb.php?c=cart&cl=1&ejc=2&merchantid=your_google_merchant_id&business=your_paypal_email
If anyone's worked out how to get the minicart DIV to display immediately on page load, rather than only appearing after the main cart has been viewed, they haven't shared their solution with us yet. Bear in mind the minicart is NOT an officially-supported feature of E-junkie; it's just a rough hack our developer dashed off for fun as a side project a few years ago and hasn't really touched since, so we're just sharing it "as-is" with no promises whatsoever.