Anyone know how to show the shipping method on the invoice or orders?
Printable View
Anyone know how to show the shipping method on the invoice or orders?
By default, the Shipping already shows on orders.php and invoice.php ... :unsure:
What shipping method(s) are you using?
Do you see them in the email?
Do you see them in the Account History?
Go to the Modules ... Order Totals ... and do a REMOVE and INSTALL on the Shipping ot_shipping ...
I need the "Shipping Method" on my packing slip as well.
Currently it shows:
Invoice No. 3947 Date Ordered: Tuesday 23 June, 2009 Payment Method: Credit Card
I would like the shipping method to show up just under the "Payment Method".
I did add "customer comments" to my packing slip. Would I do the same to add the "Shipping Method"?
Thanks
The shipping method can be displayed with:
$order->info['shipping_method']
Hi i am wanting to offer multiple postage options and am wanting to see if anyone is able to give me info or instructions on how to clone the table rate unit module? Plz Help! Thnx
You might do a search on:
clone table
clone flat
clone item
Or look in the Free Software Add Ons and search for:
zone table
and there are several add ons that might be of use to you ...
Hi
This is my first zencart installation so I hope I am not asking a stupid question.
I would like to have 2 different flat rate postage options.
I would like to charge a flat rate amount for standard shipping anywhere in the world but I want the first item to be for example $5 and all additional items purchased to be for example $2
Then clone it for express I suppose and just change the values to $10 for the first item and $3 for each additional items.
Is this possible and hopefully easy for a newbie to do?
If what you want is:
Qty 1 = $5.00
Qty 2 = $7.00
Qty 3 = $9.00
etc. etc. etc. ...
What you really want is Item Rate and set the charges for ...
Handling: 3.00
Shipping Cost: 2.00
Now you will get:
Qty 1 = $3.00 + $2.00 * 1 = $5.00
Qty 2 = $3.00 + $2.00 * 2 = $7.00
Qty 3 = $3.00 + $2.00 * 3 = $9.00
etc. etc. etc. ...
Thanks for your help. I was thinking about doing it that way earlier but for some reason I thought the packaging charge was for each item but if it is just for each order then that will work great.