Additional Contact Type on header

 I would like to add Fax next to the phone number on the header, how do I do it? Thanks

Comments

  • To add fax number in header, between phone and email, you need to modify includes/header-top-area.php file. Please under code which looks like below:
    if( $header_phone = mfn_opts_get( 'header-phone' ) ){
        echo '<li class="phone"><i class="icon-phone"></i><a href="tel:'. str_replace(' ', '', $header_phone) .'">'. $header_phone .'</a></li>';
    }
    add:
    echo '<li class="phone"><i class="icon-print"></i> +61 383 766 284 </li>';
Sign In or Register to comment.