Im using a shortcode in ”Phone Number or small info text” to have my Multisite Language Switcher widget on secondary menu next to my social icon on top right corner. I would like to add a phone number on top left corner. Can you help me with this?
Hey!
Try adding this at the very end of your theme functions.php file:
function additional_meta_content() {
echo "<div class='phone-number2'>959483894</div>";
}
add_action('avia_meta_header', 'additional_meta_content');
Cheers!
Josue
Done thank you… but then where do i add the second phone number to have it on the top left?
Hi!
In the code itself, change “959483894”.
Regards,
Josue