Agree, At lest could be optional
Yes Debug is enabled. A third solution would be to disable it but I managed to prevent the users (except admin) to get to the admin-panel. I am sorry Rahul, I dont know what is “full debug backtrace” but lets consider this problem solved on my side unless FDB can help you improving the AP (even a lil more)… Then I d be pleased to contribute.
Thanks a lot Rahul, The example suggested in the codex works too. Unfortunately, none of these two solutions dont work on log out. I have followed the simple instructions found here and it makes it.
OOps, Found a partial solution, adding this to functions.php: /** * Block access to admin panel (to everybody except admin) */ add_action( ‘init’, ‘blockusers_init’ ); function blockusers_init() { if ( is_admin() && ! current_user_can( ‘administrator’ ) && ! ( defined( ‘DOING_AJAX’ ) && DOING_AJAX ) ) { wp_redirect( home_url() ); exit; } }
Hello, Have a look at this link: Login redirect
Hello Gurupal, Yes, you can.
Hello Jayanta, Yes, you can add normal posts and pages in askbug theme.
Hi, I managed not to show the default folder icon by typing anything not recognised as an icon in the field “icon class” in the admin…if it can help 🙂
Ok, cool. i will do that but just to add the issue started after i upgraded to WP 4.7
Probably the limit exceeded error is the result of WP going to a loop. Enable Debug.log and see for errors. Also you could disable all plugins and check. And report back here so we can help more.