Home › Forums › Legacy Support › Support queries › How-to & Troubleshooting › Logged in menu
Tagged: logged-in menu
- This topic has 19 replies, 3 voices, and was last updated 4 years, 3 months ago by Jackson.
-
AuthorPosts
-
June 4, 2020 at 7:56 am #265688Masi496SpectatorHola, 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?June 5, 2020 at 7:18 am #265995DianaParticipant@Masi496 You mean here? http://prntscr.com/su6d8y Show menu for a particular user Yes possible what do you want to show?June 5, 2020 at 7:38 am #266002Masi496SpectatorHola 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.
June 6, 2020 at 5:41 am #266242DianaParticipant@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 userJune 8, 2020 at 9:07 am #266603Masi496SpectatorEstupendo Diana, muchas gracias. ¿Y si quisiera que lo viesen 3 usuarios concretos en lugar de uno solo? Espero su respuesta, Gracias.June 8, 2020 at 10:52 am #266632DianaParticipant@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 alwaysJune 10, 2020 at 4:32 pm #267311Masi496SpectatorHola 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.June 11, 2020 at 7:27 am #267408DianaParticipant@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 roleJuly 7, 2020 at 12:00 pm #273317Masi496SpectatorBuenos 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; } }July 8, 2020 at 6:38 am #273478DianaParticipant@Masi496, I mentioned the path when I shared the code with you: http://prntscr.com/tduw5j It should be here: http://prntscr.com/tduyaqJuly 8, 2020 at 8:46 am #273515Masi496SpectatorHola 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.July 9, 2020 at 4:55 am #273659DianaParticipant@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 worksJuly 15, 2020 at 10:01 am #274714Masi496SpectatorThis reply has been marked as private.July 16, 2020 at 12:44 pm #274974DianaParticipantThis reply has been marked as private.July 16, 2020 at 2:40 pm #274987Masi496SpectatorThis reply has been marked as private. -
AuthorPosts
- The topic ‘Logged in menu’ is closed to new replies.