Three tabs for the buddypress menu is …too much

Agree, At lest could be optional

Notice: Undefined offset: 2 in … wp-admin/includes/plugin.php on line 1550

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.

How to prevent users to get to the admin panel?

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.

How to prevent users to get to the admin panel?

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; } }

How to prevent users to get to the admin panel?

Hello, Have a look at this link: Login redirect

Theme licence in localhost?

Hello Gurupal, Yes, you can.

Can I add normal posts in Askbug theme?

Hello Jayanta, Yes, you can add normal posts and pages in askbug theme.

Remove icon in Category widget

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 🙂

website resources limit

Ok, cool. i will do that but just to add the issue started after i upgraded to WP 4.7

website resources limit

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.