The fastest way is: Omit the phone number fields and use that code in the functions.php
of your theme. Replace [number]
and [pin]
with your data:
function my_speed_contact_bar_data ( $list_items ) {
// add the items as last items in the list, via $array[]
// the content has to be surrounded by the LI element
$list_items[] = '<li>WhatApps: [number]</li>';
$list_items[] = '<li>Blackberry PIN: [pin]</li>';
// return the extended list
return $list_items;
}
// only use one of the both following lines:
// either: add the new items to the personal data (phone number etc.)
add_filter( 'speed_contact_bar_data', 'my_speed_contact_bar_data' );
// or: add the new items to the social media icons list
add_filter( 'speed_contact_bar_icons', 'my_speed_contact_bar_data' );