Clickable Phone Number in Logo

HI Team,

I would like to have my web logo link to a phone number. I know it has something to do with code revisions in the _brand.php file. Here is what I currently have:

<?php // ============================================================================= // VIEWS/GLOBAL/_BRAND.PHP // ----------------------------------------------------------------------------- // Outputs the brand. // ============================================================================= $option_logo_text = x_get_option( 'x_logo_text' ); $option_logo_src = x_get_option( 'x_logo' ); $logo_text = ( empty( $option_logo_text ) ) ? get_bloginfo( 'name' ) : $option_logo_text; if ( empty( $option_logo_src ) ) { $logo_output = $logo_text; } else { $logo_src = x_make_protocol_relative( $option_logo_src ); $logo_output = '' . $logo_text . ''; } if ( x_get_option( 'x_logo_visually_hidden_h1' ) ) { echo '

' . $logo_text . '

'; } ?> <?php echo $logo_output; ?>

Hi @bluetroop2,

Although the custom coding is beyond the scope of Theme Support. I would suggest you copy the file into your child theme and change the <?php echo home_url( '/' ); ?> to tel:<your phone>.
Please remember that we don’t support or investigate any issues related to custom coding. I would suggest you hire a developer who can assist you with this, or you can avail of our newly launched service called One, where we answer questions beyond normal theme support.

Thanks

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.