Page 1 of 1
Dispatch Note changes - How do we change to shipping address and ad customer name to contact section
Posted: Mon Nov 20, 2017 6:08 am
by platypuspuzzles
I would like to do the following changes, to the dispatch notes
Change heading "Payment Address" to "Shipping Address"
Change payment address to shipping address (including the person's name its being shipped to)
Add Customer Name (person who orders) under the "Contact" tab, above email and phone number
Add "Payment method" under 'Shipping Method' top right hand section
instructions here -
viewtopic.php?f=182&t=199762&p=703883#p703883
Thanks in advance!
Re: Dispatch Note changes - How do we change to shipping address and ad customer name to contact section
Posted: Mon Nov 20, 2017 6:16 am
by straightlight
Followed from this topic:
viewtopic.php?f=182&t=199762 .
Are these requests to be added as well into the order_shipping.tpl file? If so, apply the following:
In your admin/language/en (or en-gb)/sale/order.php file, you will find the payment address and shipping address entries.
Add Customer Name (person who orders) under the "Contact" tab, above email and phone number
Under order_shipping.tpl file? Please be more specific.
Re: Dispatch Note changes - How do we change to shipping address and ad customer name to contact section
Posted: Mon Nov 20, 2017 6:31 am
by platypuspuzzles
yes sorry, from the same files as the original post. I don't know what files to edit, to make the printed dispatch note edits. so I assume it's the same files as the original post
Re: Dispatch Note changes - How do we change to shipping address and ad customer name to contact section
Posted: Mon Nov 20, 2017 6:42 am
by straightlight
Yes, that is correct. It would be from the same files as indicated in your previous topic.
Re: Dispatch Note changes - How do we change to shipping address and ad customer name to contact section
Posted: Sun Jan 14, 2018 3:06 pm
by Johnny2017
Hello,
Would it be possible to get an update on how to "Change heading "Payment Address" to "Shipping Address" on the dispatch note? There are a few topics being discussed in this thread and I got lost :-(.
Using OC 2.2
admin/view/template/sale/order_shipping.tpl
<tr>
<td style="width: 50%;"><b><?php echo $text_payment_address; ?></b></td>
<td style="width: 50%;"><b><?php echo $text_contact; ?></b></td>
</tr>
</thead>
<tbody>
<tr>
<td><?php echo $order['shipping_address']; ?></td>
<td><?php echo $order['email']; ?><br/>
<?php echo $order['telephone']; ?></td>
</tr>
It lists Payment but refers to Shipping..
Any help would be appreciated!!
Thanks Johnny
Re: Dispatch Note changes - How do we change to shipping address and ad customer name to contact section
Posted: Sun Jan 14, 2018 7:55 pm
by straightlight
Would it be possible to get an update on how to "Change heading "Payment Address" to "Shipping Address"
Simply change:
Code: Select all
<td style="width: 50%;"><b><?php echo $text_payment_address; ?></b></td>
to:
Code: Select all
<td style="width: 50%;"><b><?php echo $text_shipping_address; ?></b></td>