Jump to content

add phone numbers to orders


Recommended Posts

Hello

How do i add phone numbers to orders that customers make in our website
becuase we are printing the orders to prepar to the customer , and if we have to ask the customers somthing
the phone number is not showing
i add a picture to show what i need

Thanks
Shlomi

19398_KadyDXWFUiSJQBXaspOn_t

Link to comment
Share on other sites

Add the following after line 582 of admin/tabs/AdminOrders.php:

'.(!empty($addressDelivery->phone) ? '
'.$addressDelivery->phone.'
' : '').'



and this after line 593 (line 594 after the above edit):

'.(!empty($addressInvoice->phone) ? '
'.$addressInvoice->phone.'
' : '').'

Link to comment
Share on other sites

Add the following after line 583 of admin/tabs/AdminOrders.php (after the phone line you added):

'.(!empty($addressDelivery->phone_mobile) ? '
'.$addressDelivery->phone_mobile.'
' : '').'



and this after line 595 (after the phone line you added):

'.(!empty($addressInvoice->phone_mobile) ? '
'.$addressInvoice->phone_mobile.'
' : '').'

Link to comment
Share on other sites

  • 9 months later...
  • 1 year later...
×
×
  • Create New...