How to add submenu on left menu?

Home Forums Legacy Support Support queries Other issues How to add submenu on left menu?

Tagged: 

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #79221
    kalipub
    Participant
    Hi! I would like add a submenu on my left menu: https://postimg.org/image/ofsze7ktt/   How to add a page? I would like put a link for go in this page: https://alfange.academy/espace-partenaire/   Thank you! David.
    #79370
    H.K. Latiyan
    Participant
    Yes this is possible via custom code. Add the bellow code in your wplms-customizer.php file present in your wplms customizer plugin: add_filter('wplms_logged_in_top_menu','custom_loggedin_profile_menu_dropdown',999); function custom_loggedin_profile_menu_dropdown($loggedin_menu) {   $loggedin_menu['custom'] = array(                               'icon' => 'icon-book-open-1',                               'label' => 'custom',                               'link' => 'http://vibethemes.com'                             );      return $loggedin_menu; }   NOTE: Change the 'custom' in the above code according to your requirements which will be shown in the menu. And change the link accordingly.   PS: Customization is not the part of theme support, and if you need to do customizations then I'll recommend you to hire some freelancer or a developer for such customizations. 
Viewing 2 posts - 1 through 2 (of 2 total)
  • The topic ‘How to add submenu on left menu?’ is closed to new replies.