Questions tagged [wp-admin]

The WordPress admin area is the administration center of a WordPress powered website.

An administrator has full access to all the sections within the WordPress Admin Area. Users with other roles such as editor, contributor, or author have limited access to the admin area.

Some users such as users with the subscriber role only have access to their profile page inside the admin area.

More Information:

  1. WP Admin documentation
  2. WP Admin Plugin
  3. WP Admin One page explanation
196 questions
12
votes
5 answers

How to add a custom HTML class name to admin screen submenu items?

Here are these submenu items under the Posts menu I inspected the code and found out that the markup of it is this
5
votes
3 answers

Wordpress login page redirecting to Woocommerce My-Account Page for Normal Users

I am in a deep trouble. Please help me to find a solution for the following. I have wordpress site which uses Woocommerce Plugin. Normally Woocommerce doesn't allow normal Users (Customer,User - These are roles that you can Select from Wordpress…
user8070092
4
votes
1 answer

disable wp-admin to wp-login canonical redirect (wordpress)

I am building a website, with wordpress+buddypress (latest version). In this website, I have my own custom login|signup|resetpass forms, and I do not want to link them to back-end wp-forms. I have blocked the back-end forms for all users (default…
Poofy
  • 43
  • 1
  • 1
  • 5
3
votes
2 answers

Protect wp-admin while whitelisting admin-ajax.php

I want to allow only my IP address to access wp-admin but at the same time don't want the calls to admin-ajax.php be blocked. So I want to whitelist admin-ajax.php. Does the following code in .htaccess (placed in wp-admin directory) achieve these…
ishchat
  • 31
  • 3
3
votes
1 answer

How to make WordPress Back end Page visible to lower roles than admin?

I have tried to created a menu page in WordPress back end but I can not view this page when I login with lower roles than admin! Here is the code: add_action('admin_menu', 'my_menu'); function my_menu(){ add_menu_page('My Menu', 'My Menu',…
Prince
  • 51
  • 2
3
votes
1 answer

Disable WordPress Custom css section on WordPress Customizer

Anyone can help me to locking/ disabling the Appearance -> Customizer -> Additional CSS area. on Wp-admin. I read this codex https://codex.wordpress.org/Theme_Customization_API But didn't got any hook or function for disabling it. Actually, I don't…
Amit mishra
  • 347
  • 5
  • 15
3
votes
0 answers

WordPress user grid custom column sort

I added a custom column to WordPress admin user grid area by adding this codes to functions.php function new_modify_user_table( $column ) { $column['progress'] = 'Progress'; return $column; } add_filter( 'manage_users_columns',…
Suneth Kalhara
  • 1,116
  • 4
  • 16
  • 40
2
votes
1 answer

Change admin dashboard WooCommerce widget title

I want to change the WooCommerce dashboard widget title from 'WooCommerce Status' to something else. I understand that I need to use a hook in my functions.php but I'm struggling to make this work. I've found the function and the file in WooCommerce…
Toki
  • 517
  • 3
  • 9
  • 27
2
votes
1 answer

How to fix the HTTPS Wordpress wp-admin redirect loop

I know there is a lot of questions like this but none has given me an answer that resolved my problem with my WordPress wp-admin/ page, the browser throws an ERR_TOO_MANY_REDIRECTS error, I have disabled all plugins, cleared my cache and cookies,…
JuanLT
  • 53
  • 1
  • 6
2
votes
3 answers

ERR_TOO_MANY_REDIRECTS error in wordpress wp-admin login

I am using WordPress 4.9.2 and have followed all the steps for installation. Now, once the installation finished I tried to login using entered credentials. But its redirecting me to same wp-login.php page again and again. I tried 'Lost your…
Vrushali
  • 101
  • 1
  • 11
2
votes
1 answer

Wordpress admin panel pop up window blank

I think photos speak for themselfs. basically all this windows that open inside wp admin are blank. is there any known solution? Thanks picture 1 picture 2
Robert
  • 43
  • 1
  • 6
2
votes
0 answers

Why does my WordPress lost password redirect to 404 aswell

I been working on a Wordpress PHP code which redirect the wp-admin to another URL string for example. it would change wp-admin to wp-login.php?mysecretstring=login. This works fine however which it comes to another URL like wordpress reset password…
Omar T
  • 123
  • 11
2
votes
2 answers

Ajax call from frontend not working with wordpress

Call to Ajax not working from frontend in WordPress,All i want to the data from db based on id,this is what i have tried so far. //Frontend view
Khirad Zahra
  • 843
  • 2
  • 17
  • 42
2
votes
1 answer

Parse XML into Wordpress WYSIWYG editor ONLY for Posts

I've run into a little situation that is hopefully possible to solve. My goal is to take an existing XML file from the server, parse it, and then inject it as a list into Wordpress's original WYSIWYG editor so that the site owner has the list…
A. Hickman
  • 225
  • 1
  • 2
  • 7
2
votes
2 answers

How do I re-direct non admin and end users to home when hitting wp-admin

When an external user or non admin tries to access http://www.urlVisibleToUsers.com/wp-admin gets re-directed to an error page, but still the home_url (where the WP installation resides) is exposed and visible. I would like to be able to re-direct…
panza
  • 1,341
  • 7
  • 38
  • 68
1
2 3
13 14