Show UPS/FedEx/bank logo images on Checkout but NOT on invoice
Hi Zenners,
At the moment when my customers see the shipping at checkout it appears like
Flat Rate shipping "UPS / FedEx Express" and has the LOGOs [note I use flat rate shipping]
Also for the payment it says
"Direct Deposit / Bank Transfer" and has the Commonwealth Bank LOGO, which is great at checkout ... but I DO NOT want these pictures on the invoice as it looks tacky
I want for the shipping, the UPS / FedEx logo to appear on the option at Checkout but on the invoice I just want the text "Express Courier", similarly for the AUSBank payment module I want the bank logos to appear on the checkout (which I currently have), but I do not want these on the invoice, just the words "Direct Deposit / Bank Transfer".
Somehow I have this working as only "Credit Card / PayPal" appears on my invoices while at checkout I have the text "Credit Card / PayPal" and the VISA, Mastercard and PayPal images.
any tips please?
Also I have hundreds of past orders I am behind in PDF-ing and emailing the invoices is there any way to get these images off those as changes usually only apply to future orders ... thanks!
Re: Show UPS/FedEx/bank logo images on Checkout but NOT on invoice
Hi there
In the admin folder is a file invoice.php, simply remove the relevant images tags from there.
Re: Show UPS/FedEx/bank logo images on Checkout but NOT on invoice
hey thanks for the reply but when I open the admin/invoice.php file none of the images are there. e.g. the Shipping title "FedEx / UPS Express" with the logos is kept somewhere else
I use developers tool kit to find it:
includes/languages/english/modules/shipping/flat.php
Trouble is whenever I change it to the words only and remove the logos then the logos are also removed from the checkout process as well as the invoice
define('MODULE_SHIPPING_FLAT_TEXT_WAY', 'FedEx / UPS Express <img border="0" src="http://www.apeshop.com/images/upslogosmall.jpg"> <img border="0" src="http://www.apeshop.com/images/fedex.gif">');
I want this to appear on the CHECKOUT:
'FedEx / UPS Express <img border="0" src="http://www.apeshop.com/images/upslogosmall.jpg"> <img border="0" src="http://www.apeshop.com/images/fedex.gif">'
But I only want THIS to appear on the INVOICE:
'FedEx / UPS Express'
I want what appears on the invoice to be DIFFERENT (text only) to what customers see at the checkout (text and logos)
regards,
Dave
Re: Show UPS/FedEx/bank logo images on Checkout but NOT on invoice
Hi there,
Does anyone know what to do?
There appears to be just the one entry for the "Direct Deposit / Bank Transfer" text and the "FedEx / UPS Express" text so that if I add an image it appears on both the checkout and invoice
How can I split this so that the extra images only display at checkout but NOT on the invoice??
any help?? anyone
regards
Re: Show UPS/FedEx/bank logo images on Checkout but NOT on invoice
Hi Guys,
Please help!!
With my invoices I have to make sure my “Bank logo” image and Credit Card logo images do not appear (I only want them to appear at checkout, I just want the plain text on this invoice). Also in my Credit Card payment title I put things like "No PayPal account needed" for the customer to see at checkout - but I do not want that appearing on the invoice, I want the title on the invoice to be different!
Having HTML and image refs in these fields also causes difficulties when using the EDIT ORDERS module as the fields are then too long and get cut off.
I was interested to see although in this print_invoice mod my shipping method “Flat Rate Shipping” appears as just the text only without my large FedEx / UPS logos that are displayed on the checkout.
looks like is it clean formatting and stripping away the html??
$format_shipping = explode(" (", $order->totals[$i]['title'], 2);
$clean_shipping = rtrim($format_shipping[0], ":");
$display_title = $clean_shipping . ':';
pls help guys??