Hi Team
Once logout the page is not getting redirect to the home page.
This reply has been marked as private.
But we don't have any setting for that to redirect users after logout. So, first check your wplms customizer plugin you can add the code below to set the redirection page after logout
Please paste this snippet in your wp-admin - plugins - editor - select wplms customizer plugin - wplms-customizer.php
add_action('wp_logout','custom_page_redirect_logout');
function custom_page_redirect_logout(){
wp_redirect( 'https://www.google.com' );
exit();
}
change your URL in above code to your site URL instead of google URL.
This reply has been marked as private.
This reply has been marked as private.
I am sorry the above code will not work in this case. I am adding this to the bug list
To redirect users to site URL after logout
Track here:
https://trello.com/c/ZKju0EUj/