I try to create a new user to post events, but my new user, called admin, doesn't have the ability to post. I tried changing his role to Editor, Subscriber, Author, and Contribute, but I still cannot post with admin.
Currently only the Administrator can post, how can I give admin the rights to do so as well?
I think your new user role has some limitations.
To change the settings of a user role you can use the
user role editor plugin.
To change the admin menu you can use the adminimize plugin.
Follow the instructions of these plugins to customize your new user roles and their access capabilities.
Related
Hi is there any plug in that admin can share posts on each user? And only when a user log in on page can see their relative posts and updates of them?
You can use Advanced Access Manager plugin and you can manage everything in your site with this plugin from the admin panel.
https://wordpress.org/plugins/advanced-access-manager/
I don't want users to have access to create new users, I just wanted to leave it to him to manage his own profile.
The ideal was to leave only Profile.
you suppose to change user role to subscriber only and also you can user remove_cap wordpress function to remove capabilities from user.
below link my help you to resolve issue
https://developer.wordpress.org/reference/classes/wp_role/remove_cap/
Is there a way for the user to have a dashboard to able to add/edit products, view reports and orders of his store without access to WordPress admin?
i don't need to let him access to WordPress panel or admin panel to do that. so am checking if there is a customized dashboard for that
Check this, your issue will be solved, WordPress User Role and Capabilities and WooCommerce Shop Manager role and capabilities
Just create another user and restrict it's access permission from your admin.
He will just manage the products with a customized dashboard only what you'll allow.
I have to create an admin user for a marketing company in my Wordpress website but I do not want them to have access to WooCommerce data. In other words, they should not be gain information regarding sales data, customer names, email, address and so on. However, they need to have access to themes and plugins.
Is there a way to hide WooCommerce data from admin view or create a user account with all the admin privileges except WooCommerce access?
Please help,
Thank you
You could create a new role in code and add specific capabilities to it. But it's much easier to use a role editor plugin like User Role Editor
Just create a new role and assign the capabilities you want while leaving out those of Woocommerce.
I have written a plugin, where pre-created users can log in to the system and configure the application. Problem is when I give them higher roles they can view other content on the back-end of the site.Such as creating posts, pages and etc. If I give law level role such as subscriber, user can not view the pluging page. They can't do any configuration.
What I need is only give permission to view my admin panel.
This is the code I create admin panel in wordpress.
function oscimp_admin_actions() {
add_management_page("Pages", "My Pages", "activate_plugins", "Skill-Pages", "skills_list_admin");
}
I would like to create a user from subscriber and allow only to this plugin's admin panel. Can we do it?
You can resolve this with add_cap() method of Wordpress. http://codex.wordpress.org/Function_Reference/add_cap
Also you would like to read those articles about roles and caps: http://www.garyc40.com/2010/04/ultimate-guide-to-roles-and-capabilities/ and http://wp.tutsplus.com/articles/quick-tip-user-permissions-and-your-plugin/, no doubt they will help you