Take your website
To the next level
Discover our newly launched customization services and elevate your web projects to new heights.
Delegate tasks, save time, and unlock the power of professional WordPress outsourcing.

Okay
  Public Ticket #1222629
Add an account button next to search and cart
Closed

Comments

  •  3
    MobileGear started the conversation

    Hi, I would like to add an account button next to the cart and search button in the menu. Could you let me know what function to add?

    I've attached a screenshot.

  •  7,092
    Oliver replied

    HI!

    Here is an example for adding a menu item with your's code:

    function thegem_menu_new_menu_item($items, $args){
        if($args->theme_location == 'primary' && thegem_get_option('header_layout') !== 'overlay'){
            $items .= '<li class="menu-item menu-item-NEW"><a href="#link">link</a></li>';
        }
        return $items;
    }
    add_filter('wp_nav_menu_items', 'thegem_menu_new_menu_item', 10, 2);

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver

  •  3
    MobileGear replied

    Awesome, thanks! Added to rule 2007 in functions.php

  •  7,092
    Oliver replied

    You are welcome!

    Please note if you comment on your ticket before we reply, your ticket will be pushed down of the tickets list. 

    Regards, Oliver