Search Results for 'registration'
-
Search Results
-
Hi,
I have set my homepage as “registration” in BP’s settings
I wanted to have a registration form in the homepage for guest users and had trouble pulling the registration form on a custom templateso I customized the registration template instead and made it homepage+registration page at the same time
now the problem is when I go to homepage while logged in, I get redirected to Members pagehow do I disable that redirect?
WP version: 4.9.8
BP version: 3.2.0Topic: Child-theme style.css
I have tried to add BuddyPress to my child-theme.
My object is to change the layout of the register and activate form.So I have created the following folder structure:
\wp-content\themes\child-theme\buddypress\members\In this folder I placed two files:
index-register.php = same content as \wp-content\plugins\buddypress\bp-themes\bp-default\registration\index-register.php
index-activate.php = same content as \wp-content\plugins\buddypress\bp-themes\bp-default\registration\index-activate.phpThis seems to work, but the layout of the forms is completely wrong, all input boxes are not aligned etc. So then I checked this forum and saw that it might be a good idea to import a stylesheet from buddypress in the child-theme folder.
So I added the following line to \wp-content\themes\child-theme\style.css
@import url( ../../plugins/buddypress/bp-themes/bp-default/_inc/css/default.css );This fixes the aligning problem, but totally destroys the full width layout of the site.
The sidebard is destroyed and the background color is wrong etc. etc.Is there a way to edit the register and activate form with only overrides, and leave the default styling in tact?
Any help appreciated!
Hi there,
I need urgent help, BuddyPress registration page is preventing multiple signups from same IP address, when I click Signup button, it redirects to the signup page again without any alert or notice. I have tried the same thing in another site and it’s working perfectly ok. But the problem is happening in this site-
https://growwithget.com/register
If you try, most probably you can be registered once after that it will prevent and redirect you to the signup page again. I don’t want this! I want it to allow signup normally in any situation. Can anyone help me fixing this issue?
Note: I’ve disabled all other plugins to check if it works. Unfortunately no luck.
Can anyone help me please?
I’m running WP 4.9.8 with the Twenty Twelve theme on my site http://www.charlottemasoneducation.org
All plugins are updated.Plugins:
Akismet Anti-Spam
bbPress Version 4.0.8
BP Registration Options Version 2.5.14
BP xProfile Location Version 4.3.5
BuddyPress Version 1.6
BuddyPress Activity Plus Version 3.1.0
BuddyPress Activity ShortCode Version 1.6.4
BuddyPress Edit Activity Version 1.1.5
BuddyPress Group Email Subscription Version 1.0.9
BuddyPress Groups Extras Version 3.8.2
InfiniteWP – Client Version 0.3.0
Remove Dashboard Access Version 3.4.1
The Events Calendar Version 1.0.2
W3 Total Cache Version 1.4.2
Widget Logic Version 0.9.7
Wordfence Security Version 5.9.0
WP SMTP Version 7.1.11 | By Wordfence | View detailsWhen I go to APPEARANCE > CUSTOMIZE > HOMEPAGE SETTINGS and choose Sitewide Activity as the home page, it causes a redirect loop on the homepage. While I’m logged in as admin, I can see the Sitewide Activity page by clicking on the home page, but anyone who is logged out, gets a “too many redirects” error.
When I change the settings to REGISTER as the home page, logged in members are redirected to the MEMBER page after logging in.
I have tried adding a redirect plugin and that breaks the site. I would really like members to land on the Sitewide Activity feed once they log in.
Any help would be greatly appreciated. Thank you.
Hi,
Is there any hook to check password strength on profile update? I can can do it on registration via ‘bp_signup_validate’ action, but users can change their password and use a weak one in general settings page.Cheers!
Hey guys!,
I’m trying to find a way to add placeholder text inside the textfields of the “Account Details” fields of the registration form, on the Nouveau theme. This was fairly easy with the legacy theme, but when i see the files, i can’t seem to find the html code where the fields are generated (in the legacy theme i would just add the “placeholder” attribute and it would work.). The code inside the “register.php” file is a lot different in the nouveau theme, and i can’t find where the form and fields are generated (for example, the <input> tags for the fields).
Any help would be appreciated :D.
How do I add a terms and conditions check box to the registration form?
The only option is to add a profile field but that will show on a users profile.
Html does not work either – I can not space out the paragraphs.
If I link to another page with terms and conditions on it – it will open the link in the same page as the registration. Code for opening in a new tab does not work for profile fields.
Please help.
Hi, I am a using a combination of WP Members and Buddypress.
I use Buddypress for the activity registration and the extended profile fields.As an admin I can see and edit the extended profile field of my members, but they do not have the toolbar. How can I add a ‘my profile page’ where they can see and edit their extended fields and activities?
They can now only see it when they click on their own picture at ‘who’s online’.Thanks for the help!
I want to edit the registration confirmation and verification pages. How can I change the copy on the page to say something different?
I also want to change the text copy of the email for the verification and registration and the sender information. Can this be done?
WordPress 4.9.8
BuddyPress Version 3.1.0I have used WordPress for a few years after replacing a 90’s-era handwritten website, but I have never really explored the features of the software or experimented with breaking/damaging plugins.
This however is a fresh installation I made tonight. BuddyPress is the only plugin installed. When BuddyPress is deactivated /register/kim/ works as expected. When BuddyPress is activated though, attempts to click to register, this happens:
The requested URL /register/kim/ was not found on this server.
I read some ancient posts that mentioned mod_rewrite. Rewrite is enabled. The other stuff, I don’t know about. I expected BuddyPress to just work. Apparently this one is broken on arrival. It seems this has been an issue going on several years. Is there a straightforward approach to fixing this or is self-registration is sacrificed in order to use BuddyPress?
I should re-iterate. I customized nothing, other than modifying “Just a typical WordPress site” to something less cliche.
I do have full access and ownership of the host machine and it is live with a DNS record.
Hello,
I know that I can change a User’s Display Name via WordPress Hooks.
ie this changes a user’s display name to be their user id on registration:
function update_names( $user_id ) { $data = get_userdata( $user_id ); $username = $data->user_login; wp_update_user( array ( 'ID' => $user_id, 'display_name' => $username, ) ); } add_action( 'user_register', 'update_names' );
I have a XProfile field called “Display Name” (field_id is “1”). What I want to do is:
When a User goes to their Profile Edit page and changes the field, when they click “Save Changes” the system will change ‘display_name’ to the text they entered.
How do I edit the code that fires on profile update?
Thanks