Hi@madamebttrfly
To remove contact info section just go to your theme folder,header.php
In header.php
39<h6><?php _e(‘Tel:’,’skt-bizness’); ?> <?php echo get_theme_mod(‘phone_textbox’,’+91 123456789′); ?></h6>
40<h6><?php _e(‘Email:’,’skt-bizness’); ?> “><?php echo get_theme_mod(‘mail_textbox’,’[email protected]’); ?></h6>
Replace with the followingcode
<?php $phone_textbox=get_theme_mod(‘phone_textbox’);
if($phone_textbox){?>
<h6><?php _e(‘Tel:’,’skt-bizness’); ?>
<?php echo get_theme_mod(‘phone_textbox’,’+91 123456789′); ?></h6>
<?php } ?>
<?php $mail_textbox=get_theme_mod(‘mail_textbox’);
if($mail_textbox){?>
<h6><?php _e(‘Email:’,’skt-bizness’); ?> “>
<?php echo get_theme_mod(‘mail_textbox’,’[email protected]’); ?> </h6> <?php } ?>
By adding this code you should keep the email and phone section blank in Adminpanel>Appearance>customize>header content
But if you add text in it then it will display the content section
Thanks