• Hi, I am so glad I found your plugin. It seems to work fine. One thing I would like to change is that when the URL is clicked by a non-logged in user, he is redirected to the /wp-login.php/ page. My users on the front-end use a different log in page. Is there a setting where I can change the page they will be redirected to?
    Thanks for your help!

Viewing 1 replies (of 1 total)
  • If you are comfortable updating the code you can change the following.

    Go to Plugin Editor. Select “Media Vault”. Select mv-file-handler.php

    On Line 123 replace the code with:

    if ( $permissions[$permission][‘logged_in’] )
    {
    if(!is_user_logged_in()) // checks if user is logged in
    {
    wp_redirect( ‘/’ ); // if not logged in then redirect to this url
    }
    }

Viewing 1 replies (of 1 total)
  • The topic ‘redirect to custom log in page’ is closed to new replies.