Comments 2Cristina started the conversation3 weeks ago on June 10, 2025 at 7:48amHello! I would like to hide the button in the main menu for unregisters users. Could you help me, please? 1,478Dustin replied2 weeks ago on June 13, 2025 at 7:51amHi Cristina, Please add the custom code below to hide the wishlist menu for unregistered users. (How to add custom code? ↗): add_filter( 'woosw_menu_item', function ( $menu_item ) { if ( ! is_user_logged_in() ) { return ''; } return $menu_item; } );Best regards,Dustin1 Like 2Cristina replied2 weeks ago on June 13, 2025 at 8:19amThank you!!1 Like Sign in to reply ...
Hello! I would like to hide the button in the main menu for unregisters users.
Could you help me, please?
Hi Cristina,
Please add the custom code below to hide the wishlist menu for unregistered users. (How to add custom code? ↗):
Best regards,
Dustin
Thank you!!