I am using the Site Lock feature.
How can I change the url so to redirect users to homepage instead of members page?
Did you mean redirect users after login ?
If yes then this setting is present in the wp-admin->LMS->settings->student login redirect and instructor login redirect.
If you mean redirect after activation, then this setting is present in the wp-admin->wplms->buddypress->Redirect Page on User Activation
Hi,
I mean after login.
I did that, but I want to redirect to my main page(which now is not set as home because at the time my home page is the Login page) The drop-down options
here does not allow me to select a custom page.
Can I did that manually and make on of these options to redirect me to my custom home page?
please use this code in your wplms-customizer.php file present in your wplms customizer plugin.
add_filter('login_redirect','wplms_custom_login_redirection',999,3);
function wplms_custom_login_redirection($redirect_url,$request_url,$user){
$url = 'http://localhost/wplms2/activity';
return $url;
}
NOTE: Change the url to your custom page.
Thanks for confirming, so closing the topic.