Action Bar Add 3rd Phone Number
I need to add a third phone number. I have added another phone section to the header-top-area.php file:
if( $header_phone_3 = mfn_opts_get( 'header-phone-3' ) ){
echo '<li class="phone"><i class="icon-phone"></i><a href="tel:'. str_replace(' ', '', $header_phone_3) .'">'. $header_phone_3 .'</a></li>';
}
how do I add a 3rd number in the Muffin Group Muffin Options Action Bar section please?
If I have to add the third number within the .php page, please show me what to type. The number is "BENOWA: 07 5529 4343" (I am typing the location before each number).
Thank you.
Comments
what you ask for, requires files customization what in reference to Item Support Policy is not allowed. So if you want to modify files and don't know how, you should contact with your web developer.
Thanks for understanding!
echo '<li class="phone"><i class="icon-phone"></i><a href="tel:'. esc_attr(str_replace(' ', '', $header_phone_3)) .'">'. esc_html($header_phone_3) .'</a></li>';
}
'id' => 'header-phone-3',
'type' => 'text',
'title' => __('3rd Phone', 'mfn-opts'),
'sub_desc' => __('Additional Phone number', 'mfn-opts'),
'class' => 'small-text mhb-opt',
),