We're Moving to a New Support Platform – Starting June 1st!
We’re excited to let you know that starting June 1st, we’ll be transitioning to a new support system that will be available directly on our product websites – Amelia, wpDataTables, and Report Builder. In fact, the new support platform is already live for Amelia and wpDataTables, and we encourage you to reach out to us there.
You'll always be able to reach us through a widget in the bottom right corner of each website, where you can ask questions, report issues, or simply get assistance.
While we still do not offer live support, a new advanced, AI-powered assistant, trained on our documentation, use cases, and real conversations with our team, is there to help with basic to intermediate questions in no time.
We're doing our best to make this transition smooth and hassle-free. After June 1st, this current support website will redirect you to the new "Contact Us" pages on our product sites.
Thanks for your continued support and trust – we’re excited to bring you an even better support experience!
Hi,
I want my employees to have access to the backend. But I want to hide some of the tabs just leaving access to Calendar and Employees.
How can I do this?
Thanks in advance.
João
Hi João,
thank you for reaching out to us!
Unfortunately we don't have a way to limit the tabs, but you can install User Role Editor plugin to change what capabilities your Employee will have in the backend.
Hi Ivana,
Thanks for the reply.
I have installed Add Admin CSS and I think I got this:
/*Hide Appointments
#toplevel_page_amelia > ul > li:nth-child(3){
display: none;
}
/*Hide Events
#toplevel_page_amelia > ul > li:nth-child(4){
display: none;
}
/*Show Appointments for administrator
.role-administrator #toplevel_page_amelia > ul > li:nth-child(3) {
display: block!important;
}
/*Show Events for administrator
.role-administrator #toplevel_page_amelia > ul > li:nth-child(4) {
display: block!important;
}
Added this function to functions.php
function wpa66834_role_admin_body_class( $classes ) {
global $current_user;
foreach( $current_user->roles as $role )
$classes .= ' role-' . $role;
return trim( $classes );
}
add_filter( 'admin_body_class', 'wpa66834_role_admin_body_class' );
Hi João,
thank you for the kind reply! I apologize for the later response, as we don't work on weekends.
If this works for you, wonderful - have you had a chance to test it yet?