The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
28 views

User registration add user ID?

I have created a custom user registration template for my WP website, based on this code: http://www.tutorialstag.com/create-custom-wordpress-registration-page.html. Now I was wondering if it is ...
1
vote
1answer
38 views

Include “registration.php” for custom registration form?

I’m creating a custom registration form for my website. Every tutorial has this call in the form require_once(ABSPATH . WPINC . '/registration.php'); I’ve read that registration.php has been ...
1
vote
1answer
46 views

Payment on Registration?

Case Study: I need people pay me when they come to register on my site. Most of the page should be only available for logged in user. Paypal will be my payment options. Question? I need to know how ...
-1
votes
0answers
17 views

Wordpress plugin downloadable content only for subscribers Question:69251 [closed]

Anyway,the issue below: Downloadable content only for subscribers? i found it useful as i need the further information of how to implement A Whitepaper download files in a site. i wanna ask @javipas ...
1
vote
1answer
90 views

User defined password at registration - registration email sends auto generated pass

Updating some meta fields on registration and providing the user the option to pick a password yet the registration email sends the auto generated password. User defined password works and not emailed ...
1
vote
0answers
114 views

Custom Registration page - prevent redirect to wp-login.php?action=register

I already have a custom login from built with the following code: add_action('login_redirect', 'jwh_redirect_login', 10, 3); function jwh_redirect_login($redirect_to, $url, $user) { $url = ...
0
votes
0answers
27 views

How to remove username field from the registration page?

I know about http://wordpress.org/extend/plugins/wp-email-login/, but it only takes care of login - not registration. I don't want any javascript-based solution. (I'm aware of Register Plus Redux, but ...
1
vote
1answer
34 views

Two functions utilizing registration_errors filter

I wrote two plugins that utilize the registration_errors filter: add_filter( 'registration_errors', 'process_payment', 10, 3 ); add_filter( 'registration_errors', 'add_user_to_SF', 10, 3 ); When ...
0
votes
1answer
45 views

loading custom registration template

I read this tutorial, here the author names the template custom-register.php and puts it in the theme dir and doesn't explain about how it's loaded by WP, I did the same way but the file didn't loaded ...
0
votes
1answer
33 views

Redirect User to custom URL after registering

I modified the default Wordpress registration page to include a role and also payment fields. I am adding a Gold Member feature the my website, which requires payment. I'd like it that after this ...
-3
votes
1answer
39 views

How to use Photoshop created registration form in Wordpress [closed]

Sorry but i need some help with this. Question is simple - i have registration form, custom created in Photoshop. So How to code this form to allow people to register on my blog? So in fact, how to ...
0
votes
0answers
32 views

Registration check if a field exist

I use Cimy Extra fields plugin to add a phone field in registration form and user profile. This field can be edit only once if it empty. ...
0
votes
0answers
22 views

Registration and Newsletter opt-in

I am trying to create a registration form that allows opting in for a newsletter as well. I created my own registration form using the code found here: Custom Registration Template/Page I have tried ...
3
votes
2answers
136 views

Custom Registration Template/Page

Is there a way to display the WordPress register form on a custom page the way one would use <?php get_search_form( $echo ); ?> for a search form? If not how would one go about creating such a ...
0
votes
0answers
66 views

Adding a check box and a link to terms and conditions on registration page?

I found this code online, but it's for the login page. I tried changing the word "login" to register and noticed that it appeared on the registration page; however it didn't need to be checked off to ...
0
votes
0answers
64 views

Adding Custom field in a signup form not working

I have used the following code in functions.php to add some custom field to my registration form and add it to the db in the wp_usermeta table. But dont know why it is not working. I am using a custom ...
0
votes
0answers
132 views

Add data from front end into custom made table in database

I have a registration form which contains firstname, lastname, organisation, username, email etc. Here Username and email only will be saved in the db in the wp_users table. I have created a new table ...
0
votes
0answers
20 views
0
votes
0answers
6 views

Registration_errors filter logic [duplicate]

I have a function that hooks into the registration_errors filter and adds a registered user to an external db. The problem is that even when the wordpress registration returns an error, the user is ...
0
votes
1answer
34 views

Structuring function with registration_errors hook

I created a plugin that adds a function to the registration process where the user info also gets added to an external db. The problem is that, when the function runs successfully i.e. user is able ...
0
votes
2answers
70 views

Protect custom php file with login

I've developed a php app and I'd like that it's restricted to WP users (use WP like a private area). Is there a way to use WP is_user_logged_in function in a custom file (i.e. www.mysite.com/app.php)? ...
0
votes
3answers
172 views

Insert Extra fields added in the front end registration form to DB

I have added some extra fields like first_name,middle name,last_name etc into the custom registration form. I want to add those details int the DB also. Now only username,email,Display name and ...
0
votes
1answer
228 views

How to setup a popup registeration page in wordpress with function.php

everyone: I wonder if there is existing tutorial on how to create a popup registration page in wordpress by utilizing function.php? or is there another way that can do with it? Thank you!
0
votes
1answer
107 views

How to bypass the username as a required field in registration and just use email address instead?

Is there a clean way of doing so? I would prefer doing that in functions.php using some action and/ or filter hooks. The 2nd-best option would be using some good plugin out there. (I haven't seen 1 ...
0
votes
1answer
34 views

Is there a way to direct unregistered user to registration page when click a link?

everyone: this question seems pretty commmon to ask, but I did not find any answer. I was wondering, if there is a php function that I could use to direct a user to the site's registartion page, so ...
0
votes
0answers
21 views

Error “registration is closed” [closed]

I got this error "registration is closed" in my website, the registration is open from admin control panel... It's also open from PhpMyAdmin wp_Option.Users_Can_Register. I am using the "goodnews" ...
0
votes
1answer
125 views

500 Internal Server Error after Register dialog, but with successful registration

I get a 500 Internal Server error if I try to register a new user. This user will be created successfully, but I don't want that my users will see the error page and, therefore, think that something ...
1
vote
1answer
54 views

How to let user select role upon registration in Facebook-AWD?

I would like to use the plugin Facebook-AWD plugin. My site would provide two ways of registration (normal and register with Facebook). Users must select their role, ie: buyer and seller. With ...
0
votes
1answer
42 views

Disable registration on certain condition

I have a certain condition in my code (if the user is visiting the page from a network range) and I can ask for this condition easily, let's say: if ( $user_in_allowed_range) What I want is to ...
0
votes
0answers
40 views

How should I manage dual registration and custom roles on my wordpress site?

I am running a multi-lingual site for my client and now he wants to add in a shop and a community so I have to deal with shoppers and authors as logged in users. Now I want only a single ...
1
vote
0answers
95 views

Single Multisite Signup Page [closed]

I'm trying to turn the WordPress multsite signup page into a one step process instead of two. I'm wanting people to choose their username, email, password and a confirmation of their password, along ...
0
votes
1answer
334 views

How to display error messages using WP_Error class?

I have registration form code in my functions.php file like this if ('POST' == $_SERVER['REQUEST_METHOD'] && !empty($_POST['action']) && $_POST['action'] == 'registration') { ...
0
votes
1answer
26 views

allow only lowercase user registrations

I'm trying to get allow only lowercase usernames are valid usernames in my wordpress blog. I managed to write a function but it does not seem to work. add_filter('validate_username' , 'simple_user', ...
0
votes
0answers
381 views

jquery.validate remote: Checking if username is taken

I'm working on a wordpress plugin and I'm trying to validate a username field on a custom registration page. I need to check if the username is already in use in my install. I have it working the ...
0
votes
1answer
944 views

Receiving “This content cannot be displayed in a frame” error on login page

I am using a new domain for my WordPress directory in different server. When I click the meta links such "Login" or "register", I get this page: This content cannot be displayed in a frame To ...
1
vote
2answers
53 views

Display commenter's registration date on comments?

Is there any way to display a user's (registered) registration date on the comment. Lets say i have a written an article, registered users A, B, C and D left a comment on my article. I can display ...
0
votes
1answer
308 views

How to show password fields on registration form w/o plugins

I want to show hidden password fields on registration form. I found that these fields are already present in /wp-admin/user-new.php <?php if ( apply_filters('show_password_fields', true) ) : ?> ...
0
votes
1answer
50 views

How to force login after user browses for a few minutes or browses a few pages?

I want users to be redirected to a custom login/registration page after they've got a taste for the site, by time passing or/and browsing a few pages. I found this code that forces users to login ...
1
vote
1answer
44 views

Getting thousands of registration spam

We have tried the range of Captcha options, and now have Facebook Connect with Akismet installed as a constant, but still can't stop thousands of spam registrations from attacking our WordPress site. ...
0
votes
1answer
101 views

Registration and Login form

I am creating practice website in which i have "register Here" and "login" link on which I want to open a registration form on click of Register Here and Login Form on click of Login. How can I do ...
2
votes
2answers
253 views

Shared Members between two different wordpress installations with different databases

I have two wordpress installations with same host with different folders. Each installation uses its own database. I mean, database are separated. I am not using one database for two wordpress ...
0
votes
1answer
95 views

what is the best and safest way to allow users to register to site

I'm wanting to allow users to register to my wordpress site. What is the best and safest way to implement this? The ultimate goal is to give the users the option to subscribe to alerts when updates ...
0
votes
2answers
222 views

Front-end registration form with password field

I'm trying to create a front-end registration form for my Wordpress website. The registration form is in the header, so any plugins I've seen don't work as they use shortcodes. Look at my website for ...
0
votes
2answers
191 views

Downloadable content only for subscribers?

I'd like to use WordPress to set up a whitepapers site. Any user can check the main site with a list (blog format) of white papers available. But if a user wants to download any whitepaper, he has to ...
1
vote
0answers
69 views

Regsitration form on External page

I am trying to achieve where user can register from my another website which is in sub folder and in the same database. However both website has own tables and one is Wordpress and other is ...
1
vote
2answers
525 views

Check if username exist with AJAX

I've created a custom registration form for a WordPress MultiSite installation. It allows registrations of new blogs and users. I want to check with ajax if a given username is available. This is what ...
0
votes
1answer
66 views

Registration area + reserved area

As the title of this post says i need to create a registration form to let readers register to my site and access to special contents not visible to everybody. Is there some plugin that handles this ...
0
votes
1answer
148 views

how to allow unregistred users to view normal posts [closed]

If an unregistered user/stranger try to view a post it says "You must be registered or logged in to view the post". http://testandverification.com/events/dvclub-august-2012-on-sv-uvm/ We have ...
-1
votes
1answer
90 views

Null value given when confirming email's

Fixed the problem by adding if ( 'email' == $type || 'email2' == $type ) { to the top of the snippet below and changing the first elseif to a if statment I have created a WordPress register form on ...
2
votes
1answer
572 views

Showing the user's username in registration email or activation page with BuddyPress

a) I would like the person's username to be included in their activation email once they have registered. e.g. Activation email would look like: Thanks for registering! To complete the activation of ...

1 2 3 4