Sherry

Forum Replies Created

Viewing 2 posts - 51 through 52 (of 52 total)
in reply to: user acess #62016

Sherry
Member

thanks. So to be clear user cannot download uploads (from the front end)? Uploads is more for sharing/editing only?

I am trying to achieve the following
login – go to page with all the files – ability to upload from the frontend and the ability to download those files that were uploaded.
See image enclosed this is what happens when I try and download a file I uploaded in front end.

in reply to: Download Manager Redirect to custom page #62015

Sherry
Member

Hello
I added this in hopes that once I logged in I would go to the page /front but it didn’t work

add_action( ‘template_redirect’, ‘wpdm_login_redirect’ );
function wpdm_login_redirect(){
if( is_user_logged_in() && get_the_ID() == get_option(‘__wpdm_login_url’) ):
wp_redirect( home_url(‘/front/’) );
exit();
endif;
}

Viewing 2 posts - 51 through 52 (of 52 total)