• Resolved topminds

    (@topminds)


    Hi, I would like to change the login link on “You must login to view your message.” to a specific webpage instead of the wordpress login page. I tried adding an html modification but was unsuccessful. Do you have any suggestions? thank you

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author Shamim Hasan

    (@shamim51)

    You can add following code in your theme’s functions.php (Change message as you like)

    
    add_filter( 'fep_main_shortcode_output', function( $out ){
        if( ! is_user_logged_in() ) {
            $out = "<div class='fep-error'>".sprintf(__("You must <a href='%s'>login</a> to view your message.", 'front-end-pm'), wp_login_url( get_permalink() ) )."</div>";
        }
    
        return $out;
    });
    
Viewing 1 replies (of 1 total)
  • The topic ‘how to change login redirect’ is closed to new replies.