• Resolved free3dart

    (@free3dart)


    How do I redirect to the WordPress registration page in case of member only downloads

    Pls help

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

Viewing 1 replies (of 1 total)
  • Plugin Contributor Barry Kooij

    (@barrykooij)

    Hey there,

    We don’t offer this functionality out of the box but you can use the ‘dlm_access_denied_redirect’ filter for this.

    For example:

    
    add_filter( 'dlm_access_denied_redirect', function( $url ) {
    return "https://www.yourwebsite.com/your-registration-page";
    } );
    

    You can add the above code snippet to the bottom of your theme’s functions.php file.

    Kind Regards,

    Barry Kooij

Viewing 1 replies (of 1 total)
  • The topic ‘Redirect to registration page for member only downloads’ is closed to new replies.