> ## Knowledge Base Index
> Fetch the complete knowledge base index at: https://support.wildrobot.no/sitemap.xml
> Use this file to discover available pages before exploring further.
> Pure-Markdown content can be obtained by appending a '.md' suffix to the content URLs listed in the sitemap (without the trailing slash).

# Kunde mobil/telefon nummer på levering

Frakt-telefonnummer er ikke en del av Woocommerce-standarden. Men du kan ha tilpasset funksjonalitet for å registrere og lagre denne informasjonen fra kundene dine.

For å legge til dette telefonnummeret riktig til leveringer, bruk dette filteret:

[![](https://storage.crisp.chat/users/helpdesk/website/7b1847a3d6546400/945bdf6a-778e-417f-9898-af2be0_2dhjne.png)](https://downloads.intercomcdn.com/i/o/347087069/520e35e5e83b7ff8bbbecc54/image.png?expires=1717665300&signature=183282094c4f50df8927bed686dee47c78362c63cf17d57657100737d4d08aad)

``` add_filter('logistra_robots_parts_cosignee_phone', "custom_change_phone_number", 10, 2);function custom_change_phone_number($phone, $order_id) { $order = wc_get_order($order_id); $shipping_phone = $order->get_SHIPPING_phone(); // Swap this out we internal logic for fetching shipping-phone if($shipping_phone) { // Check if you have got a valid phone number $phone = $shipping_phone; } return $phone}```