The effects of alcohol on sustanon 250 leucine for – real weight loss & bodybuilding benefits?
How to prevent acce...
 
Share:
Notifications
Clear all

Question [Solved] How to prevent access to backend (dashboard and login page)

4 Posts
2 Users
1 Likes
305 Views
Posts: 5
Topic starter
(@doctorbr)
Active Member
Joined: 4 months ago

Registration on my site is disabled and the only way to comment is via social login. But logged people can see the admin bar and access the pages (URLs) /wp-admin and /wp-login / and /wp-admin/profile.php

Is there a configuration on WPDiscuz, or a code (snippet), to prevent such access?

I don’t want users to ever see the WordPress back-end (!)Β 

3 Replies
Asti
Posts: 7123
 Asti
Support
(@asti)
Illustrious Member
Joined: 6 years ago

Hi @doctorbr,

This artilce should be helpful for you: https://blog.hubspot.com/website/how-to-limit-wordpress-dashboard-access

Posts: 5
Topic starter
(@doctorbr)
Active Member
Joined: 4 months ago

Hello, @Asti

I added 2 snippets (codes below).

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

Β 

add_action( 'init', 'blockusers_init' );
function blockusers_init() {
if ( is_admin() && ! current_user_can( 'administrator' ) && ! ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) {
wp_safe_redirect( home_url() );
exit;
}
}

But users logged in by wpDiscuz via social login can still access the /wp-login.php page and this generates a lot of confusion, as the username collected by wpDiscuz appears as a user name in the β€œUser Name” field of the default WordPress form (page /wp-login.php).

2023 12 19 12 46 25

Is there an effective way to change URL /wp-login.php via wpDiscuz?

1 Reply
Asti
 Asti
Support
(@asti)
Joined: 6 years ago

Illustrious Member
Posts: 7123

@doctorbr,

Sure if you have a login page you can isnert the URL in the Dashboard > wpDiscuz > Settings > User Authorization and Profile Data tab.Β 

More info here: https://wpdiscuz.com/community/f-a-q/change-login-url/

Share: