Home Forums Pro Themes University Hub Pro 2 Phone Numbers in the Header

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #46211
    cbhs-sacramento
    Participant

    Is it possible to change the email contact in the header to be a second phone number field? Right now the theme only lets you have 1 number in the header and we would like to add a second underneath it if possible.
    Thanks,
    Jesse

    #46235
    wensolutions
    Keymaster

    Hello @cbhs-sacramento,

    The field to enter the phone and email is control through the customizer . And to change the setting require higher code customization . So if you want any other change along with this feature you can always consider hiring the customizer .

    To hire a developer please follow the link below
    http://themepalace.com/hire-a-customizer/

    Although we can even provide the quick fix to display the phone number through the use of java script . But you have to place the static phone number .

    To place the java script you can use plugins . Below is the link to one of them .

    https://wordpress.org/plugins/custom-css-js/

    After activating the plugin paste below given Js .

    jQuery(document).ready(function($){
    
    	$('.quick-call-info > .quick-email').remove();
    
    	$( '.quick-call' ).after( '<a class="quick-call" href="tel:56984">56984</a>' );
    
    });

    Here in the line

    $( ‘.quick-call’ ).after( ‘56984‘ );

    replace the no 56984 with your number in both the place .

    Hope this helps.

    Best Regards!!

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.