Logged in menu

Viewing 15 posts - 1 through 15 (of 20 total)
  • Author
    Posts
  • #265688
    Masi496
    Spectator
    Hola, Les agradecería que me pudieran resolver la siguiente pregunta. Gracias de antemano. ¿Es posible incorporar en el "logged in menu" un item que solo vea un único usuario?  
    #265995
    Diana
    Participant
    @Masi496 You mean here? http://prntscr.com/su6d8y Show menu for a particular user Yes possible what do you want to show?
    #266002
    Masi496
    Spectator
    Hola Diana, Si. Ahí lo quiero poner. Quiero poner una página que he creado en mi wordpress y que solo pueda ver un usuario particular. ¿Cómo lo puedo hacer? Es que he visto las opciones siguientes:
    • Que lo vean todos

    • Que lo vean solo los miembros

    • Que lo vean solo los administradores

    Pero yo quiero que lo vea solo un usuario particular. Espero su respuesta, Un cordial saludo.  

    #266242
    Diana
    Participant
    @masi496 Go to wp-admin > Plugins > editor > select wplms customizer plugin > wplms-customizer.php and add the below code there add_filter('wplms_logged_in_top_menu','loggedin_login_panel'); function loggedin_login_panel($loggedin_menu){ if(get_current_user_id() == "2"){ $loggedin_menu['custom']=array( 'icon' => 'icon-exclamation', // Grab icon code from here : yoursite.com/wp-content/themes/wplms/css/icons-reference.html 'label' => __('Custom','vibe'), 'link' => 'http://google.com' ); return $loggedin_menu; } } Instead of 2 in the above code pass that user's id for which you want to show a menu there. So the above code will show a menu for only that user
    #266603
    Masi496
    Spectator
    Estupendo Diana, muchas gracias. ¿Y si quisiera que lo viesen 3 usuarios concretos en lugar de uno solo? Espero su respuesta, Gracias.
    #266632
    Diana
    Participant
    @masi496, I would recommend to specify a user role instead of user id. In this way, we can target more users. In future if you want to show that menu for 20 users then you can do that by specifying the user role. Instead of adding id always
    #267311
    Masi496
    Spectator
    Hola Diana, ¿Y sabéis en que fecha estaría implantada esa opción? Mientras tanto, ¿Cómo se especifica esa función de usuario? Gracias de antemano Diana. Espero tu respuesta. Un cordial saludo.
    #267408
    Diana
    Participant
    @Masi496, Suppose you want to show the menu for subscribers user role only Then Go to wp-admin > Users > All Users > Edit the user role > http://prntscr.com/sxpgr2 Then I will change the above code according to user role. So that particular menu will be visible to only that group of users who have that user role
    #273317
    Masi496
    Spectator
    Buenos días, Estoy intentando copiar el código que me indicasteis en la conversación anterior pero no encuentro donde acceder: "Go to wp-admin > Plugins > editor > select wplms customizer plugin > wplms-customizer.php and add the below code there" Voy a "Plugins" y no me aparece "editor"!! https://drive.google.com/file/d/1JqQKBmYotoruLb1YRGyW0Bl-f3gol4e_/view?usp=sharing Me podrían indicar la ruta exacta para poder copiar el código: add_filter('wplms_logged_in_top_menu','loggedin_login_panel'); function loggedin_login_panel($loggedin_menu){ if(get_current_user_id() == "EstudianteGR001"){ $loggedin_menu['custom']=array( 'icon' => 'icon-book-alt2', 'label' => __('KIT DEL CURSO'), 'link' => 'https://www.huelladocente.com/kit-del-alumno/menu-seleccion-grupo/menu-curso-gr-001/' ); return $loggedin_menu; } }
    #273478
    Diana
    Participant
    @Masi496, I mentioned the path when I shared the code with you: http://prntscr.com/tduw5j It should be here: http://prntscr.com/tduyaq  
    #273515
    Masi496
    Spectator
    Hola Diana, Como puedes ver en la siguiente imagen, no me aparece "Plugin editor"!! https://drive.google.com/file/d/1UqUspF0N7mv0Re0FWljx20a9zDVZ_qo9/view?usp=sharing ¿Por qué no aparece?¿Cómo puedo verlo? Gracias.
    #273659
    Diana
    Participant
    @Masi496, Then your webhost might hide the editor so that nobody can add the code from here and use cpanel/FTP to add the code Try adding the code using cpanel or FTP and then ping me here if code not works
    #274714
    Masi496
    Spectator
    This reply has been marked as private.
    #274974
    Diana
    Participant
    This reply has been marked as private.
    #274987
    Masi496
    Spectator
    This reply has been marked as private.
Viewing 15 posts - 1 through 15 (of 20 total)
  • The topic ‘Logged in menu’ is closed to new replies.