- This topic has 0 replies, 1 contibutor, and was last updated 10 years, 9 months ago by .
Viewing 1 post (of 1 total)
Question
Viewing 1 post (of 1 total)
- The question ‘Request Logout redirection & widget display settings’ is closed to new replies.
BuddyBoss Home – Web › Support Forums › General › Requests and Feedback › Request Logout redirection & widget display settings
The following requests would be nice to see implemented:
Option to choose where to redirect to after hitting logout (by default WordPress shows the login screen after logging out which makes no sence) i know it can be implemented in the functions.php file by adding this code:
add_action('wp_logout','go_home');
function go_home(){
wp_redirect( home_url() );
exit();
}
Same goes for the login button, would be nice to see that at the front end just like the register page. I know it’s possible to use the login widget for this but the button in the top navigation redirects to the default wordpress login (thats a little inconsistent).
At last i would like to see a simple option implemented to hide widgets (or widget area’s) on mobile/tablet. In some cases i don’t want the widgets to be visible on mobile. I know how to do this by editing the CSS but it would be more user friendly if this was just a checkbox at the back-end.
Thanks!