Is there a way to reconfigure the panels in the dashboard view for users?
for example when a user logs in , the dashboard shows the first panel top left is "right now" "at a glance" how would I move these panels around to my liking, so when a new user creates a blog and logs in they will see it the way I reconfigure it? I know they will be able to change it after, that's ok.
Is there a way to reconfigure the panels in the dashboard view for users?
for example when a user logs in , the dashboard shows the first panel top left is "right now" "at a glance" how would I move these panels around to my liking, so when a new user creates a blog and logs in they will see it the way I reconfigure it? I know they will be able to change it after, that's ok.
Thanks drmike,
that looks like it will do what I need.
one more question I thought I would post here since it is close to related.
is there a way that I can leave a message for a specific customer in their back office that no one else sees. for example I currently have a customer that signed up, but his email is not excepting emails from the system. I want to leave him a message in his admin asking him to do a couple of things that might allow the email to come through, since I currently do not have any other way to contact him.
$tmp_check_user = get_current_user_id();
if ( $tmp_check_user = "5" ) { //or whatever the id of the user is
add_action('admin_notices', 'admin_message_output');
}
Haven't tested it but we run something along those lines for the display "You're in deep sh*t. Please contact support." messages over on wp.com.
Responses (4)
Keeper of the Dark Chocolate — 25th May 2009 (2 years ago) #
I thought that's what this one did?
http://premium.wpmudev.org/project/dashboard-widget-order
Member — 26th May 2009 (2 years ago) #
Thanks drmike,
that looks like it will do what I need.
one more question I thought I would post here since it is close to related.
is there a way that I can leave a message for a specific customer in their back office that no one else sees. for example I currently have a customer that signed up, but his email is not excepting emails from the system. I want to leave him a message in his admin asking him to do a couple of things that might allow the email to come through, since I currently do not have any other way to contact him.
Thanks for any input.
Tony V
Keeper of the Dark Chocolate — 26th May 2009 (2 years ago) #
The admin message plugin:
http://premium.wpmudev.org/project/admin-message
If you;re already running this plugin, it;s going to take a bit of rewriting but if you;re not, install it and look for this line:
add_action('admin_notices', 'admin_message_output');try editing it like this:
Haven't tested it but we run something along those lines for the display "You're in deep sh*t. Please contact support." messages over on wp.com.
Keeper of the Dark Chocolate — 26th May 2009 (2 years ago) #
And the &-quot-; bits within the code section are double quotes if you haven't noticed yet.
Become a member