Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #1401196
    anubistar
    Participant

    Hi,

    I’ve been messing around with the header settings and it doesn’t allow me to add anything to it.

    I would like to add a phone number on the top right corner and also “Advertising for Tradies” next to my logo on the left.

    I’ve attached a screenshot..

    If anyone could help that would be great

    #1401199
    anubistar
    Participant

    This is the image.

    #1401201
    anubistar
    Participant

    Sorry the previous wrong is the wrong one.

    #1401346
    anubistar
    Participant
    This reply has been marked as private.
    #1401530
    Rupok
    Member

    Hi there,

    You can enable Topbar and place your content within Topbar Content under Customize > Header.

    Cheers!

    #1401565
    anubistar
    Participant

    This is not exactly what I want to do.

    Did you look at the attachment?

    You cannot add another images or move anything around..

    #1401626
    Rue Nel
    Moderator

    Hello There,

    Thanks for updating in! Sorry if the Topbar area will not help in your changes. Since the child theme is set up, please add the following code in your child theme’s functions.php file

    // Add custom menu items
    // =============================================================================
    function getaquotetoday_custom_menu_items( $items, $args ) {
    
      $adtradies = '<li class="menu-item x-menu-item x-menu-item-tradies">'
                  . '<div class="pam tradies" style="padding-top: 30px;">'
                    . 'Advertising for Tradies'
                  . '</div>'
                . '</li>';
    
      if ( $args->theme_location == 'primary' ) {
    
        $items .= '<li class="menu-item x-menu-item x-menu-item-tel">'
                  . '<div class="pam telno" style="padding-top: 30px;">'
                    . '+123 4567 890'
                  . '</div>'
                . '</li>';
      }
    
      return $adtradies . $items;
    
    }
    add_filter( 'wp_nav_menu_items', 'getaquotetoday_custom_menu_items', 9999, 2 );
    // =============================================================================

    As this is all custom development, regretfully we won’t be able to assist further. Custom development is outside the scope of our support. We’re happy to provide advice and get you started in the right direction, but you would still be responsible for the implementation.

    Thank you for your understanding.

  • <script> jQuery(function($){ $("#no-reply-1401196 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>