Okay
  Public Ticket #1035348
I want to show phone number and emial in top menu bar
Closed

Comments

  •  2
    hassandad started the conversation

    Hi,

    I am trying to show phone number and my email address in top menu bar where its showing my account and date. I saw in code you are using a function which is in laborator_functions.php in widget laborator_account_links_and_date. How can i do this. If i modify this function when i will update theme my changes will lost. If i copy this whole file in my child theme then i will be required to keep track of what got changed in new version of theme. Please provide me some help how can i extend its functionality.

  • [deleted] replied

    Hi hassandad,

    I have created a small code snippet for you:

    function header_top_bar_email_and_phone() {
        ?>
        <style>
        .top-menu .row > .col-sm-6:nth-child(1) > nav {
            display: none;
        }
        .phone-and-email {
            padding: 9px 0;
        }
        </style>
        <div class="phone-and-email">
            <a href="mailto:[email protected]">[email protected]</a> | <span class="phone">+1 (234) 567-8901</span>
        </div>
        <?php
    }

    add_action( 'aurum_header_top_bar_left_before', 'header_top_bar_email_and_phone' );

    Add this in functions.php and it will show the phone and email in top header bar.

  •  2
    hassandad replied

    Thank you. It fulfill my need.

  •   [deleted] replied privately