wordpress create page without dashboard or admin url - wordpress

sorry for my poor english. I installed a plugin Remove Dashboard Access to prevent users to access the dashboard , but I still want the users create pages or posts , now if I active the plugin users can't create page or post and if I deactivate the plugin users will access to dashboard.
how can"t prevent users from accessing dashboard and let them add pages or posts without passing by wp-admin url
Thank you

You just need to install a plug-in see the link below.
WP User Frontend
https://wordpress.org/plugins/wp-user-frontend/

Related

How can I enable access only to a specific plugin (Newsletter) to a new user on the wordpress admin dashboard?

I am using the Newsletter plugin to send newsletters from my Wordpress website. I want to create a new user who can only access the Newsletter plugin and not have any other admin capability on the admin dashboard.
How do I do that?
I have been experimenting with different access-control plugins, but none seem to have the capability to toggle access for a user/role to another plugin.
Would greatly appreciate if someone can point me to a plugin or a piece of code that can make the magic happen.
Many thanks in advance.
Turned out to be quite simple eventually.
The newsletter plugin, in the advanced settings option in its settings tab, provides a checkbox to allow certain user roles to access the plugin.
I just enabled it for a non-admin role that worked for me, and voila!

Wordpress user roles restrictions plug in

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/

Wordpress query regarding creating admin login

I have a question regarding creating a WordPress site:
* Is it possible to create admin login and user login from WordPress? (and when I mean admin login, I don't mean the backend of the site.)
I need admin login to the website where only the admin can enter posts via a form and a submit button and user login can view those posts and comment on them. SO basically I need a different UI for the admin to add and edit posts.
Any suggestions for easy ways?
Easy: mark those posts / pages as PRIVATE.

wordpress plugin is not working in the user admin panel

I've made a plugin for my WordPress and its working fine with the admin panel.
I've given a collaborator access to a user and that user can login with his details, he has limited options on the admin menu which he can use.
The plugin is not showing on that menu can anyone tell me is it possible to give users or a specific user access of that plugin?
i need help thank you in advance.
You can use the Adminimize plugin https://wordpress.org/plugins/adminimize/ and you can set the privileges whom you need to show up the plugin when the login is successful at their sign up accounts.

Custom dashboard page in Wordpress

I am working on a client project now,its on Wordpress .I need to do following things
1.Each logged user should redirect to a custom dashboard page(Not usual Wordpress dashboard).
2.Each logged user able to upload the PDF from Dashboard and store them.
Right now I am kinda struck like where to start,I have login system,registration and profile page implemented using User Profile Plugin from codecanyon.
Someone please advise me to implement the Custom Dashboard for each logged user,
How to upload the PDF for each user and how to store them?.
I don't know hows your codecanyon scirpts working, but the scenario to achieve this is:
Make Custom PostType/Custom Template that only works with logged-in users, Or you can check if detect the logged in user's session on that particular dashboard so that other users can't access it.
Make custom login form and after success logged in, redirect the logged in user to that particular PostType/Template that you make for logged in users.
I don't think the default WordPress upload works in front, so you have to create a custom upload scripts that upload the pdf files and store the credential of the user in wp_options table, with update_option()
This thread helps you to use default wordpress media uploader in front end Front End Media Uploading in Wordpress

Resources