• Resolved Henk Verlinde

    (@ve6304)


    Hey Jeff,

    I would like to hide the widget for logged out users. How would I do that?

    Thanks! Henk

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Jeff Farthing

    (@jfarthing84)

    In your theme’s functions.php file or theme-my-login-custom.php, place the following code:

    
    function maybe_show_tml_widget( $show ) {
        if ( ! is_user_logged_in() ) {
            return false;
        }
        return $show;
    }
    add_filter( 'tml_show_widget', 'maybe_show_tml_widget' );
    
    Thread Starter Henk Verlinde

    (@ve6304)

    Super, thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Hide widget for logged out users’ is closed to new replies.