Spring naar de inhoud
  • Inloggen
  • Registreren
WordPress.org

Nederlands

  • Thema's
  • Plugins
  • Nieuws
  • Ondersteuning
    • Documentatie
    • Forums
  • Over
  • Community
    • Meetups
    • WordCamps
  • Contact
  • WordPress downloaden
WordPress downloaden

Plugins

  • Mijn favorieten
  • Beta-testen
  • Ontwikkelaars
Download

Remove Dashboard Access

Door TrustedLogin
  • Details
  • Beoordelingen
  • Installatie
  • Ontwikkeling
Ondersteuning

Beschrijving

  • Limit Dashboard access to admins only, admins + editors, admins + editors + authors, or limit by specific capability.
  • Choose your own redirect URL
  • Optionally allow user profile access
  • Optionally display a message on the login screen
  • (more info)

Contribute to RDA

This plugin is in active development on GitHub. Pull requests are welcome!
Capabilities:

  • You can limit Dashboard access to Admins only, Editors or above, Authors or above, or by selecting a capability. More information on WordPress’ default roles and capabilities can be found here: https://codex.wordpress.org/Roles_and_Capabilities

User Profile Access:

  • You can optionally allow all users the ability to edit their profiles in the Dashboard. Users lacking the chosen capability won’t be able to access any other sections of the Dashboard.

Login Message:

  • Voer een bericht in om weer te geven op het inlogscherm. Als je dit veld leeg laat, wordt het bericht uitgeschakeld.

Hiding other plugins/themes’ Toolbar menus:

  • Remove Dashboard Access removes some built-in WordPress Toolbar menus by default, but can be extended to hide menus from other plugins or themes via two filters: rda_toolbar_nodes (viewing from the admin), and rda_frontend_toolbar_nodes (viewing from the front-end).

How to find the menu (node) id:

  • In the HTML page source, look for the <li> container for the menu node you’re targeting. It should take the form of <li id="wp-admin-bar-SOMETHING">
  • In <li id="wp-admin-bar-IETS">, wil je het IETS-gedeelte

How to filter the disallowed Toolbar nodes on the front-end:

/**
 * Filter hidden Toolbar menus on the front-end.
 *
 * @param array $ids Toolbar menu IDs.
 * @return array (maybe) filtered front-end Toolbar menu IDs.
 */
function wpdocs_hide_some_toolbar_menu( $ids ) {
    $ids[] = 'SOMETHING';
    return $ids;
}
add_filter( 'rda_frontend_toolbar_nodes', 'wpdocs_hide_some_toolbar_menu' );

Common plugin Toolbar menus and their ids:

  • Jetpack door WordPress.com (meldingen) – ‘opmerkingen’
  • WordPress SEO by Yoast – ‘wpseo-menu’
  • W3 Total Cache – ‘w3tc’

Debug Mode

To view debugging information on the Settings > Reading screen, visit:

example.com/options-general.php?page=dashboard-access&rda_debug=1

Schermafdrukken

  • The Dashboard Access Controls settings in the Settings > Dashboard Access screen.
  • Allow users to access their profile settings (only).
  • Optional login message.

Installatie

  1. Search ‘Remove Dashboard Access’ from the Install Plugins screen.
  2. Installeer plugin, klik Activeren.

FAQ

Wat gebeurt er met niet-toegestane gebruikers die toegang proberen te krijgen tot het dashboard?

Users lacking the chosen capability or role(s) will be redirected to the URL set in Settings > Dashboard Access.

Waarom heb je geen optie toegevoegd om de WordPress-werkbalk uit te schakelen?

The Toolbar contains certain important links (even for disallowed users) such as for accessing to the profile editor and/or logging out. Plus, there are many plugins out there for disabling the Toolbar if you really want to.

Can I disable the redirection/profile-editing controls without disabling the plugin?

Nee. Schakel de plugin uit als je de functionaliteit niet wilt gebruiken.

Beoordelingen

Avoid

lellojello 16 juni 2022
An insidious mess that bricked my entire site as soon as I installed it.

5 Estrellas

javigandia 8 maart 2022
Muchas gracias por este buenísimo plugin. Muy fácil de utilizar y muy efectivo.

Great help to customize the website use

Renaat 4 november 2021 1 reactie
This plugin helps me to customize the website use with my membership and LMS plugins. Very nicely done.

A must-have!

unapersona 9 juli 2021 1 reactie
This plugin is a must-have when working with public roles.

Great PLugin

rusben 29 januari 2021 1 reactie
Great, works perfectly.

Excelent

eduardomrx 25 januari 2021 1 reactie
Lees alle 74 beoordelingen

Bijdragers & ontwikkelaars

“Remove Dashboard Access” is open source software. De volgende personen hebben bijgedragen aan deze plugin.

Bijdragers
  • TrustedLogin

“Remove Dashboard Access” is vertaald in 6 talen. Dank voor de vertalers voor hun bijdragen.

Vertaal “Remove Dashboard Access” naar jouw taal.

Interesse in ontwikkeling?

Bekijk de code, haal de SVN repository op, of abonneer je op het ontwikkellog via RSS.

Changelog

1.1.4 & 1.1.5 on April 18, 2022

Remove Dashboard Access is now being maintained by TrustedLogin! Remove Dashboard Access aligns with what we do at TrustedLogin: simply making WordPress more secure. Email any questions to support@trustedlogin.com.

  • Fixed: Deactivating and activating the plugin will no longer overwrite plugin settings
  • Fixed: Deprecated function screen_icon() warning
  • Fixed: Issue when front-end editing of profiles when the $pagenow global is not defined (#24)
  • Fixed: Potential Invalid argument supplied for foreach() PHP warning (#22)

1.1.3

  • Compatibiliteitsprobleem met bbPress en de mediarasterweergave opgelost.

1.1.2

  • Bump getest-tot-en-met 4.1.0
  • Diverse leesmij-wijzigingen.

1.1.1

Bug Fix:

  • Move options back to Settings > Dashboard Access screen to resolve conflict with page_on_front UI.

1.1

Verbeteringen:

  • Instantiate as a static instance for better modularity
  • Move Dashboard Access Controls settings to Settings > Dashboard Access
  • Add optional login message option
  • Add better settings sanitization
  • New Filter: rda_default_caps_for_role – Filter default roles for Admins, Editors, and Authors
  • New Debug Mode

Bug Fixes:

  • Remove unnecessarily stringent URL mask on the redirect URL option

1.0

  • Complete herschrijving!
  • New: Limit dashboard access for Admins only or by capability
  • New: Allow/disallow edit-profile access
  • Nieuw: kies je eigen omleidings-URL
  • New Filter: rda_default_access_cap – Change default access capability
  • New Filter: rda_toolbar_nodes – Filter which back-end Toolbar nodes are hidden
  • New Filter: rda_frontend_toolbar_nodes – Filter which front-end Toolbar nodes are hidden

0.4

  • Refined DOING_AJAX check for logged-out users, props @nacin and @BoiteAWeb

0.3

  • Changed cap to manage_options, replaced PHP_SELF with DOING_AJAX

0.2

  • preg_match vervangen door admin-ajax-test. Compatibiliteit toegevoegd met herschreven dashboard-URL’s.

0.1

  • Ingezonden naar repository

Meta

  • Versie: 1.1.5
  • Laatst bijgewerkt: 2 maanden geleden
  • Actieve installaties: 50.000+
  • WordPress versie: 3.1.0 of nieuwer
  • Getest t/m: 6.1.1
  • Talen:

    Dutch, English (Canada), English (US), German, Russian, Spanish (Spain) en Swedish.

    In jouw taal vertalen

  • Tags:
    accessadministrationdashboardloginusers
  • Geavanceerde weergave

Waarderingen

Bekijk alle
  • 5 sterren 63
  • 4 sterren 4
  • 3 sterren 1
  • 2 sterren 2
  • 1 ster 4
Log in om een beoordeling te versturen.

Bijdragers

  • TrustedLogin

Ondersteuning

Opgeloste problemen in de laatste twee maanden:

0 van de 1

Het supportforum bekijken

Doneren

Wil je de groei van deze plugin ondersteunen?

Doneer aan deze plugin

  • Over
  • Nieuws
  • Hosting
  • Doneren
  • Swag
  • Documentatie
  • Ontwikkelaars
  • Raak betrokken
  • Leren
  • Showcase
  • Plugins
  • Thema's
  • Patronen
  • WordCamp
  • WordPress.TV
  • BuddyPress
  • bbPress
  • WordPress.com
  • Matt
  • Privacy
  • Publieke code
WordPress.org
WordPress.org

Nederlands

  • Onze Facebook pagina bezoeken
  • Ons Twitter account bezoeken
  • Bezoek ons Instagram account
  • Bezoek ons LinkedIn account
Code is poëzie.