Refers to accounts with the ability to login and participate in a WordPress site.

learn more… | top users | synonyms (1)

0
votes
1answer
15 views

How can I verify users facebook ID that he provides during signup process

In my signup form there is an input field that gets user's facebook ID, I just want to verify if its correct before signing up the user.
1
vote
1answer
15 views

How to programatically change username (user_login)?

As in the title, how to programatically change user's login? I wanted to use wp_inser_user function, but it appears that when updating current user, it doesn't change his/hers username. Should I use ...
0
votes
1answer
10 views

how do I add role and capability after I create a new user

I have a simple requirement: 1. create a user 2. create a role for the user 3. add capability for the role First, create a new user $uid = wp_insert_user($userdata); Second & Third, create a ...
0
votes
1answer
12 views

Show Custom Post From Logged In Author

I have a custom home page set up so soon as users log in they see an overview of their account. I want to show them all of their own posts but im having trouble and can only get it to show current ...
1
vote
5answers
1k views

Adding fields to the “Add New User” screen in the dashboard

I'd like to add the field "Company Name" to the add new user page in the admin panel. I've done quite a bit of searching and have been unable to find details on how to do this. I can easily add info ...
0
votes
0answers
65 views

Cannot invoke wordpress's API from outside existing PHP system

I have an existing PHP site located on /var/www/A, now I want to add a blog module on /var/www/A/wordpress. I have installed wordpress below /var/www/A successfully. I can visit it via ...
0
votes
1answer
37 views

How to redirect user after session timeout

How can i redirect user after session timeout in multisite to my custom Page? Normally Wordpress multisite redirects users to example.com/subdirectory/wp-login.php
1
vote
0answers
28 views

Custom post type for 'staff' versus using wordpress user profiles?

A scenario I keep coming across is where an organisation might have several staff for whom I want to have some sort of listing and a single profile page with biographical information. Typically I ...
0
votes
0answers
21 views

display related suggestions

I'm using couponpress for my theme on wordpress and I was just wondering. In the my account section of my site, there's a few options but I am wanting to display a list of promotions related to each ...
0
votes
0answers
22 views

Privacy in WordPress

I am looking to set up a private community using WordPress. The requirements are: User can "register" somewhere An admin will "approve" them The user gets an email "you have been approved" The user ...
0
votes
2answers
47 views

How can I add authors in WordPress and assign them a picture?

I know that Wordpress allows us to create a new user and the user's avatar is got from Gravatar service base on their email. How can I add authors in WordPress and assign them a picture (without using ...
0
votes
1answer
166 views

How to update BuddyPress xprofile fields programmatically?

I update user info using wp_update_user function. I also need to update the table wp_bp_xprofile_data. Is there any function, where I can update data on wp_bp_xprofile_data table?
2
votes
4answers
1k views

Allow anonymous users to post to my site for moderation

I'm in need of the ability to allow anyone (they don't have to login) to fill out a form with email and a textarea and submit it to my site. This form would be treated as a post and appear somewhere ...
3
votes
1answer
353 views

Update post counts (published, draft, unattached) in admin interface

I am working on a multi-user WordPress setup and have made it so a particular type of user can only see and interact with posts, images, pages etc that they have authored. The code to make this happen ...
0
votes
2answers
116 views

What is the proper way to get logged in user id in a plugin?

I need to get logged in user id inside my plugin. Is this the proper way? $root = dirname(dirname(dirname(dirname(__FILE__)))); if (file_exists($root.'/wp-load.php')) { ...
0
votes
0answers
16 views

Wordpress user registration / each user has their own personal info setup by administrator

The function I want is: after user register on the website, administrator can set up certain info for this personal, this user can view it but can't change it. I checked several registration plugins, ...
0
votes
1answer
202 views

Display link with current user's username in it in Custom Menu

I'd like to add a link to BuddyPress' My Favourite Topics in a Custom Menu. Is there a way to use the current logged in user's username in the link? I mean like the %category% in the permalinks.
-2
votes
3answers
151 views

How can I create a virtual user on WordPress

I want to create a virtual user on WordPress, I mean the username and password will not exist in the database or in the Dashboard but if I login, the username and password must be recognized and the ...
0
votes
1answer
19 views

Permalink structure as code in back-end?

I have this permalink structure: /%year%/%monthnum%/%postname%/ What I want to is, output the link of a post in the back-end and let users input a postname, that will automatically lead to that post ...
0
votes
1answer
186 views

Display users in order by an “order” custom meta field

Alright, so here's my current code (which works, displaying the users in order by ID and excluding the admin user): $site_admin = "1"; $order = 'ID'; $user_ids = $wpdb->get_col("SELECT ID FROM ...
4
votes
1answer
1k views

How to display the status of users (online - offline) in archive.php

I am using the code the user status How to check if a user (not current user) is logged in?. On page profile of the author it works well (thank you guys). But if I put on the archive page, at the ...
0
votes
1answer
251 views

Cant edit profile from frontend

Hope you can assist. Background: I have a multisite config. Users need to be able to update their profile from the frontend, via their profile page, which is something like, ...
0
votes
2answers
132 views

get USER ID in functions.php using user_register action

I am having trouble of getting the ID in user_register filter in functions.php... Here is what I got add_action( 'user_register', 'sendanotheremail' ); function sendanotheremail($user_id) { ...
1
vote
1answer
385 views

How to remove “Super Admin” from All Users for those that are not a “Super Admin”?

I would like to remove the filter at the top that says "Super Admin" for users that are not a "Super Admin". How do I go about doing this? This screenshot shows what I am talking about:
0
votes
1answer
146 views

each user having category with their name and can add sub categories post in that category

I am looking for help or plugin for the following conditions of my site I am using wordpress 3.0+ version. my site is about School where students will get register and post their experience and ...
1
vote
0answers
19 views

Share user table from WP with Drupal

I'm developing a sister website to a well-established private site that is already built in Wordpress. I can't use Wordpress to create what I need and I am therefore using Drupal. The owners of the ...
0
votes
0answers
31 views

Ranking authors by post meta value

I have custom post-type with custom post-meta and i want to rank authors by post meta value.I can show the SUM of a meta value on author page with this code <? php $points = ...
1
vote
2answers
18 views

Highlighting the current users comment

I don't know if this is possible, I've searched around but came up short. Basically, I need that the current user who is commenting to see his comments slightly different than the rest. I'm doing ...
0
votes
1answer
89 views

How do I filter users based on email address?

Is there a method/plugin by which we can filter users by email address? I have lots of spam posts recently coming from users of a specific email domain.
0
votes
0answers
9 views

No multisite but a super admin without sufficient privileges

I have no multisite but I'm super admin. Why I do not know. After I changed username and password on the super admin has super admin no longer all privileges. In some settings, and plugin, I get: ...
0
votes
1answer
37 views

making my theme multisite compatible?

I have a wordpress theme that works "OK" as a single user and I have attempted to get it to work as a multi-user unsuccessfully. There are features missing in multiuser side that are necessary to get ...
4
votes
3answers
585 views

Performance tips for a large user base [closed]

I’m preparing a site with many users (100.000+). Since the output depends on the current user’s relation to some custom post types and taxonomies a static cache won’t help much. Besides using a ...
0
votes
1answer
29 views

Showing user ID on user main page from screen options

On the user main page in the screen options, you have some choices for displaying user information e.g.. e-mail, role, posts etc.. Is there a way to be able to display the user's unique ID?
2
votes
2answers
195 views

Allow User to Edit Page Based on their Email

Quick Info I am using the Posts 2 Posts plugin in order to create a relation between Teachers and the Classes they teach. The teacher's page is a custom post type of faculty in which teachers are ...
0
votes
1answer
14 views

Add “BuddyPress Messages” link to TML widget

I'm using the latest version of Wordpress with the latest version of Theme My Login and I would like to add a custom link so that users can go directly to their BuddyPress Messages from the widget, ...
0
votes
1answer
40 views

Get logged in username in wordpress url

I want to get the username of the logged in users in the URL of my wordpress site. Like if user: arvind is logged in, I want to get the url as 'www.wp.com/arvind' or 'www.wp.com?user=arvind'. Is ...
0
votes
1answer
121 views

How to show a custom notification to a specific user?

I am new here, I found this spot interesting and very special. I've already found useful information through your discussions. My first question is about user management. As Admin, I would need to ...
3
votes
3answers
1k views

How to hide media uploads by other users in the Media menu?

Simply put - how might I completely hide media files uploaded by any other users other then themselves? Id like to disable access to these links & files since they are a way for non-admin users to ...
0
votes
0answers
30 views

Combine Query and Select Database to create directory loop

I have a query loop on my page that I am using which displays all users on the page with certain custom fields filled out. It's working fine however, I need to also query these users for their level ...
0
votes
2answers
30 views

How to keep track of user logins?

I have a client with a private Wordpress blog - that is to say, you need to log in to read it. We are using Counterize to keep track of visits to the site and to find the most popular pages. But now ...
0
votes
1answer
42 views

Wordpress Login Customization for External Authentication

I'm not sure which approach is best but my situation is something need to tie the admin login with external authentication source. I mean, WP normally is: wp-admin ---> Check with WP Database ...
0
votes
2answers
24 views

User Meta stuff

Ok I am trying to make a page the list user meta. http://pastebin.com/rw1t7Mgp The part I am stuck on is $our_children = get_user_meta ($user_id,"our_children"); it is a meta field with an array ...
1
vote
2answers
203 views

How to export bbPress (forums, topics, replies) and all users?

I've searched a little and I could not find a straight working answer. I want to export all users and their bbPress(2.1.2) forums, topics and replies to another fresh WordPress installation? If ...
1
vote
1answer
64 views

User's total comment count excluding comments on their own posts

I'm currently working on a plugin that I hinted at here and so far I have managed to code everything, only missing one piece of the puzzle. This is how I get the total comment count for the ...
0
votes
1answer
285 views

Display edit link if post author is current user

I am creating an author.php page and listing all the posts from an author. Although admins can see the posts' edit links i want to echo the link if logged in user is the current user for example if ...
1
vote
1answer
64 views

Display list of uploaded images, filtered by user under a specific user group

I am planning to create a "Photography" page in my wordpress site. In that page, there will be a list of the photographers (maybe create a user group called 'photographers') and display the images ...
2
votes
1answer
1k views

How to create a public profile for authors/contributors/users?

I would like to add a public profile page to the authors and others contributors in my site. where visitors can see their profile info. I don't wanna use Buddypress, is it possible with WordPress ...
2
votes
2answers
715 views

Buddypress - Send New User Activation Link to Admin

How do I send the new user activation link to my own email address instead of the user? Is there a simple function I can use to switch things out? function ...
0
votes
0answers
41 views

Comment/post ratio system for users

In a multi-author platform, to enhance interaction between authors, I want to add a ratio system that calculates the author's comment count (on others posts) and post count and displays a grade. ...
0
votes
0answers
26 views

Limit to number of users connected?

ls there a limit to number of users connected to a wordpress blog at the same time? I am having a problem with users( authors) not able to log on. After about 5 or 6 are online everyone else gets hung ...

1 2 3 4 5 11