Wordpress change user to admin - wordpress

I am building a wp site and am just about finished. I set up the site with the admin as myself, my email address and avatar. Problem is I need to deliver it with the client as the admin using his name, email and avatar so it is his avatar that shows up as the agent.
Can someone point me to the correct documentation that has dealt with this before or explain the best way to do this ?
Update:
I have added the client as an administrator but I still show up as the agent of the site (super user). This is a real estate site.
Would this be specific to the template I am using (agentpress 2.0) or some sort of setting in all wp sites ?

If you are do it via PHP Read this else you can add a user with admin privileges.

Related

Wordpress site not redirecting to dashboard after login

I am trying to login on my wp site, when I am given correct admin details the landing page coming up and there are no admin dashboard showing, I tried many more plugin disabled option but the problem not solved, even I tried to reset password for admin access after changed it the same result appeared like no dashboard section rather than frontend. Please give me a solution. Thanks in advance.
Seems like some others developed the site. If you are coder/programmer try the below
Login to hosting
Open PHP My Admin or any mysql UI tool
Open Prefix_users, usually this will be wp_users
see list of users and check if you have admin permissions. Sample below
user_id - specific user id
meta_key - wp_capabilities
meta_value - a:1:{s:13:"administrator";s:1:"1";}
then save the DB record. Else get programmer support

How to change or update password if registered into a site through social media

I have placed social media login/registration into my WordPress site, but I noticed that users who register through this channel cannot change/update password or their profile on my site. It seems that my site is always dependent of these social medias and users cannot break free.
How can I enable these users to update their profiles on my platform?
Many thanks, and Happy Holidays!!
This is a function of the plugin you are using. Try using a different one. What happens to the user when you turn off the plugin? Does your plugin store email addresses in your own database?

WordPress Multisite: Super Admn lacks permissions on sub-site

I have a WordPress MultiSite setup and everything works fine on the "main" site. The second site, set up in a subfolder, functions correctly except that the Super Admin account seems to lack permission to do anything. I can add a new Admin user which can post, add media, etc. But the Super Admin user can't do anything.
What could be going wrong?
Did you add the super admin as a user to the the subsite? In the Network Admin Backend you can add users to your subsite which you have probably not done and this is most likely to be the problem.
If this does not solve the problem check the rights and permissions of your network admin user with a Plugin or some custom functions: Does the network admin own the required rights (a role does not necessarily have all capabilities not even the network admin).
https://codex.wordpress.org/Roles_and_Capabilities

wordpress user registration/profile plugin

I am trying to make a wordpress site which will allow users to register by themselves and log into the site and have a profile. IS there such a plugin that will allow me to incorporate this into my site? I have looked around and being that I have very little experience with making sites/wordpress I have decided to ask some experts.
I know with wordpress you get a "blog" sort of site, but i'm hoping that if the plug-in i'm looking for exists then I can make my site to look different. The reason I am asking for each individual member to have their own "profile page/ private page" is because I want to be able to upload data to their specific pages and they should be able to see the data without seeing others'.
Thanks for any and all help you can provide me.
If I can't find a suitable solution, I will try to build a site with joomla, I had gone with wordpress because I had heard that it was easier to use.
Yeah, There is one plugin to do all these in wordpress. Plugin name: Profile Builder - front-end user registration, login and edit profile
plugin Link: http://wordpress.org/plugins/profile-builder/
Yeah, There is one plugin to do with all the things which you want. Plugin Name : "Theme My Login"
Plugin Features :
Your registration, log in, and password recovery pages will all match
the rest of your website
Includes a customizable widget to login anywhere from your blog
Redirect users upon log in and log out based upon their role
Show gravatar to users who are logged in.
Assign custom links to users who are logged in based on their role
Customize user emails for registration and/or password recovery
Send user emails in HTML format
Allow users to set their own password upon registration
Require users to be approved or confirm e-mail address upon
registration
Theme user profiles
Please refer the following Location :
Theme My Login

Login to Wordpress from another website

I have a Simple PHP Website at www.example.com and I have a wordpress blog at www.example.com/blog/ and both of them have user login pages. I would like the user to logged into the wordpress blog as well when the user logs in using www.example.com login.
Please help
The proper way of doing it is
Create a wordpress plugin
Use the plugin to listen for the wordpress engine initiation
On initiation check for the user session in the browser or in your external application
If a user session is found (assuming your usernames and emails are unique for both systems, so that a single registration is allowed with it) check for a wordpress user with matching username or email
If a wpuser is found, set the current user as that
If no user is found create a new wordpress user and set him as the current user
There are neat API's available for doing this in wordpress. We have used it to integrate wordpress with many external websites, CMS and Social networking sites like Elgg.
You should have a look at the bbPress Integration plugin that does the same thing to integrate WordPress and BBPress forums.
Basically you will simply need to create some cookies on the user browser crypted with the appropriate secret keys.

Resources