Skip to:
Content
Pages
Categories
Search
Top
Bottom

How to modify

  • @inboxis

    Participant

    how can i get low ranking roles like subscriber to not see the wordpress dashboard? but make thier profile page different so its not the defalut dashboard in wordpress? For example the ” dashboard in bbpress.org is a profile thing at the top right corner. How do I do That?

Viewing 4 replies - 1 through 4 (of 4 total)
  • @robkk

    Moderator

    Please explain a little more of what you are talking about.

    @inboxis

    Participant

    if you register on the website, you can still see the admin bar at the top. How can i get low roles like subscribers to not see that but instead have a edit profile page instead?

    @robkk

    Moderator

    INstall this plugin

    https://wordpress.org/plugins/wp-admin-no-show/

    or just use this code.

    add_action('after_setup_theme', 'remove_admin_bar');
    
    function remove_admin_bar() {
    if (!current_user_can('administrator') && !is_admin()) {
      show_admin_bar(false);
    }
    }

    You can follow this to add a profile link to your menu.

    Layout and functionality – Examples you can use

    @inboxis

    Participant

    thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.
Skip to toolbar