Is there a way to add the customers ID above the email and phone number on the admin/orders page without changing core?
I have found the relevant code in admin/includes/actions/orders/views/edit.php
Code: Select all
<td>
<p><?= $address->format($order->customer, 1, '', '<br>') ?></p>
<p><?= $customer_data->get('telephone', $order->customer) . '<br><a href="mailto:' . $email_address . '"><u>' . $email_address . '</u></a>' ?></p>
</td>Code: Select all
<?= $customer_data->get('id', $order->customer) ?>Any help appreciated.