Hello Summer Sale!
Exclusive season-opening discount on TheGem theme.
Limited time offer.

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,280
    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,280
    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