Search Results for 'registration'
-
AuthorSearch Results
-
September 22, 2015 at 10:37 am #244670
In reply to: Home URL redirects to Members page
Henry Wright
ModeratorAre you logged in? If you visit /registration/ as a logged-in user, then you will be redirected to /members/. Setting your homepage to your registration page will mean you get redirected to /members/ when you visit your homepage (when logged-in).
September 21, 2015 at 11:37 pm #244656DanielEngelhardt
ParticipantYes it worked for me, thanks again. Here is the snippet which i am using in my
functions.php
:add_action('bp_core_activated_user', 'bp_custom_registration_role',10 , 3); function bp_custom_registration_role($user_id, $key, $user) { $userdata = array(); $userdata['ID'] = $user_id; $userdata['role'] = xprofile_get_field_data('Ich bin', $user_id); if ($userdata['role'] == 'Dienstleister') { $userdata['role'] = 'dienstleister'; } elseif ($userdata['role'] == 'Kunde') { $userdata['role'] = 'kunde'; } //only allow if user role is my_role if (($userdata['role'] == "dienstleister") or ($userdata['role'] == "kunde")) { wp_update_user($userdata); } }
September 21, 2015 at 9:45 pm #244654In reply to: Registration and Activation pages
danbp
ParticipantSeptember 18, 2015 at 5:33 pm #244560In reply to: [Resolved] period or special characters in username
shanebp
Moderator– Is it possible as admin to change their username in the back office?
No, WordPress does not allow it. Usernames must be unique.
– Why the dot/period or special characters are allow in the username during the registration? and how i can block this?
There are various methods to restrict the characters allowed in a username when registering. Here’s one example:
http://wordpress.stackexchange.com/questions/124697/limit-username-to-specific-characters-a-z-and-0-9September 17, 2015 at 11:07 pm #244532Topic: Can’t fill out registration form
in forum How-to & Troubleshootingshayeryan
ParticipantThis is a fresh install of BuddyPress, first time user. I set my registration page below but when I try to click on any of the fields it will not allow me to place the cursor. I can tab to the field and fill it out and the registration works fine but this is obviously not an acceptable workflow. Any help would be appreciated!
http://elegantmosaics.com/registration/
WP Version: 4.3.1
Theme: the7.2September 17, 2015 at 4:23 pm #244513danbp
ParticipantWordPress is the software behind buddyPress.
If you need custom roles&capabilities on your site, you can add roles programatically as explained on your mentionned tutorial. If it works, site admin can attribute one of the additionnal role to members, within admin.BuddyPress, at this time, handles only member types. A member type is not a role or a capability à la WordPress, but only a way to sort better your members. In other words, a kind of a member category.
To handle such behave from front-end while registering, you can associate a xprofile field value with an existing WP role. See here for a solution (untested) provided a few month ago.
https://buddypress.org/support/topic/how-to-assign-a-wp-user-role-based-on-a-registration/#post-232887Add snippet to your child theme functions.php or into bp-custom.php and give it a try.
September 14, 2015 at 7:00 pm #244385In reply to: Registration form doing nothing
Henry Wright
ModeratorThere’s something causing the registration form not to submit and that’s likely to be either a rogue plugin, theme or custom code you’ve introduced. The usual troubleshooting steps are to deactivate everything and work forward step-by-step, testing as you go. That’s the only way to determine where the problem has been introduced.
September 11, 2015 at 5:48 pm #244291In reply to: Registration form doing nothing
thepofo
ParticipantActually that did not resolve it for me. I deactivated all plugins except the ACF (I need it to run the site).
What did change, instead of jumping to the homepage on submit, it reloads the registration page. But no registration did happen.
September 11, 2015 at 12:18 pm #244275In reply to: Registration form doing nothing
Henry Wright
ModeratorTry disabling all plugins aside from BuddyPress. Sometimes a rogue plugin can interfere with the registration process.
September 6, 2015 at 10:53 pm #244138In reply to: required Username twice at Registration
nilje
ParticipantNo, there is no other plugin which could cause it
I’ve made a screenshot
http://www.danielaholl.de/Apublic/Unbenannt-1.jpg
I think the left side is the WordPress registration and right the one for buddypress.. there are my custom profile fields too.September 6, 2015 at 10:25 pm #244135In reply to: required Username twice at Registration
modemlooper
ModeratorBuddyPress and WP do not have two usernames. Is this the BuddyPress registration form or another form by a plugin?
September 6, 2015 at 9:30 pm #244129In reply to: required Username twice at Registration
nilje
Participantthanks… thats not really compareable, the double password entering is just for precaution.
I’ve never seen anywhere to enter my username twice.. And what if they enter two different ones, they don’t know for sure with which one they could login. That’s just odd for everyone who don’t know it’s about WordPress and Buddypress.Your link couldn’t help me, the topics are about not using usernames at general, I need it, but not twice. I dont’t trust the Plugin Simplr Registration Form Plus+, sounds good but there are many who had problems with their databases after using it..
September 6, 2015 at 2:46 pm #244120Topic: required Username twice at Registration
in forum How-to & Troubleshootingnilje
ParticipantHi,
At my registration page I have two required username fields. One for WordPress itself and one for buddypress I think. How can I set to just fill out the one for wordpress and set the same username for buddypress as well? It’s really confusing for the user to set the username twice.
Thanks!
September 6, 2015 at 8:32 am #244118In reply to: Profile Signature
danbp
ParticipantIt is standard! At least if you use xprofile component to let your users enter their signature.
1) Create a new field. Call it Signature and give it a textarea type.
2) Once this field is edited by a user, during registration or later, the signature appears on his profile.3) if you want this field somewhere else, for ex on the profile header, you simply write a function to call this field and hook it into the template you want.
Ie. Add this to child theme functions.php or bp-custom.php
function my_signature() { if ( bp_is_active( 'xprofile' ) ) if ( $signature = xprofile_get_field_data( 'Signature', bp_get_member_user_id() ) ) : // field name; case sensitive echo $signature; endif; } add_filter( 'bp_before_member_header_meta', 'my_signature' );
Or to use Henry’s advice
add_filter( 'bp_after_profile_content', 'my_signature' );
Reference
September 6, 2015 at 8:06 am #244116danbp
ParticipantCheck the translation file: buddypress_CN.po (with a text editor like Notepad++) and verify that email text are all in plain text. Those strings shouldn’t contain any html entities.
Read from here for more details about email customization:
https://buddypress.org/support/topic/customizing-emails-template/
https://buddypress.org/support/topic/registration-process/September 3, 2015 at 7:02 pm #244032In reply to: Increase in fake visits since install
djsteveb
Participant@projectslimited – yeah, welcome to the club! I had one bp site with registration turned off for 18 months.. turned it on to test some thing – hours later – dozens of new “groups” and spam accounts.
My main site I depend on buddypress humanity as main line of defense.. but also add the plugin “good question” (changing the defaults on these two!)
I also use “geo ip block” on all wp sites now. (changing some defaults)
that seems to help 95% – then I got so tired of the manual spammers that I added the apache gep redirect thing from maxmind lite.. and block all visits from Russia, China, Ukraine, and a few others completely.
Saves a ton of bandwidth and server resources – and makes it easier to find the cdir blocks of US and UK ISPs to block via htaccess (none of my web site visitors are using COLO Crossing Transport to visit my site- so all their cidrs eg:
23.94.144.0/20
23.94.144.0 – 23.94.159.255blocked…
I have been messaging with a wordpress plugin author about modding his plugin that pulls info from failed logins and puts them into iptables – suggesting a few mods that can make that info useful to those of us who do not have access to or want to get into iptables modsec stuff – hopefully those suggestions will come into a new version of that plugin later this year.
with my multi-site setup I use a ‘new blog defaults’ plugin to set any new blogs created to automaticcaly have the noindex setting in wordpress, and noinded nofollow settings from yaost.. so even if one manual spammer gets in and makes blog – it does no good, and does not show up on the radar of the other spammers.
I recently had to block Japan entirely as I started getting daily spam hits from there.. of course each person’s setup will vary – I can’t block all countries on all my sites, so some sites I set the ip geo block to whitelist just one or two.. on other sites I setup a blacklist to block 20 or so..
August 28, 2015 at 8:59 am #243760ctuxboy
ParticipantHello,
– I activate the original WP twentyfifteen-theme, and i see no errors in the developer console (Chrome browser)
Is this an issue? Have more people this?
Can i adding manually the private button links?This are the installed plugins:
– All In One WP Security
– Black Studio TinyMCE Widget
– Bowe Codes
– BP Registration Options
– Bp Stickers
– BuddyPress Members only
– BuddyPress
– Child Theme Configurator
– Contact Form 7
– Duplicator
– Events Manager
– FB like notification for buddypress
– Loco Translate
– Page Builder by SiteOrigin
– Peter’s Login Redirect
– Really Simple CAPTCHA
– SiteOrigin Widgets Bundle
– User Switching (deactivated for the moment!)
– WP StatisticsThe strange thing is that all the buttons showing correctly in the user profiles when nothing a friend.
(sorry for my bad english!)
August 26, 2015 at 12:01 pm #243637Topic: Terms & Conditions Checkbox
in forum How-to & Troubleshootingmangelesgcl
ParticipantHello
I want to add a Terms & Conditions checkbox on buddypress signup form. I tried it using: dashboard/users/profile fields ( https://buddypress.org/support/topic/terms-of-agreement-checkbox-for-registration/ ) but I can’t see any changes when I add a new field (It doesn’t matter the kind of field). What am I doing wrong? Buddypress version 2.3.2.1. Theme Mediso.
Thanks,
August 24, 2015 at 6:40 pm #243545In reply to: Registration only for guests
danbp
ParticipantSee if you can use this plugin:
https://wordpress.org/plugins/bp-registration-options/August 22, 2015 at 8:11 am #243489In reply to: [Resolved] Add group redirects to 404 error!
danbp
ParticipantYou’re welcome !
To all readers, Codex reminder when getting 404, missing BP pages, not found errors after setup or upgrade ! 😉
Pages are automatically generated for the BuddyPress components you enabled in the components settings using the default slugs based on the name of each component activated. Make sure that activated components have corresponding pages assigned to each in this panel.
Directories
Associate a WordPress Page with each BuddyPress component directory.- Activity Streams (if activated)
- User Groups (if activated)
- Members > this is core and can’t be removed/modified
Registration
Associate WordPress Pages with the following BuddyPress Registration pages.
- Register
- Activate
Note: registration is not a BuddyPress component but part of WP core.
When you allow user registration, you have to add manually these pages.August 22, 2015 at 8:09 am #243488danbp
ParticipantTo all readers, Codex reminder when getting 404, missing BP pages, not found errors after setup or upgrade ! 😉
Pages are automatically generated for the BuddyPress components you enabled in the components settings using the default slugs based on the name of each component activated. Make sure that activated components have corresponding pages assigned to each in this panel.
Directories
Associate a WordPress Page with each BuddyPress component directory.- Activity Streams (if activated)
- User Groups (if activated)
- Members > this is core and can’t be removed/modified
Registration
Associate WordPress Pages with the following BuddyPress Registration pages.
- Register
- Activate
Note: registration is not a BuddyPress component but part of WP core.
When you allow user registration, you have to add manually these pages.August 20, 2015 at 8:17 pm #243423In reply to: Cant activate pending accounts
danbp
ParticipantNo need to be rude. I’m trying to help you by asking questions, that’s all.
As you use a third party plugin, i suggest you to deactivate it or even, to remove it completely and to test WP+BP only. Don’t know the plugin you mention, but one thing is sure, something is going wrong. On a standart install, handling pending members is generally not a problem.
WP was updated 48 hours ago to 4.3 and is working flawless with BP2.3.2.1. (i have 6 BP site running on different configuration, without issues). If your issue appeared after this update, it is possible that a plugin is now no more able to work correctly with this new release.
FYI, BRO is compatible up to: 4.2.4 and was last updated: 2015-7-21. Pretty recent, but who knows where the error comes from ? Have you asked for that issue on the plugin support ? No…
If you thing it is an issue with BuddyPress, report the bug, describe the way to reproduce by opening a ticket on BuddyPress Trac, the only place where you can expect a fix. If BP devs agree with the issue.
More about BP bugs on Codex.
August 20, 2015 at 6:37 pm #243422In reply to: Cant activate pending accounts
DJ9
ParticipantYes , they can register separate on both sites. Buddypress isnt working right on either site and use to. Thats the main point with this post, it was working and now it isnt, I really dont see why why this is hard to understand. I am using another plugin to activate my subscribers like i said before but it doesnt let you do bulk in high numbers. It is called, BP registration options. I have 2 databases and the pages are set up individually and buddypress is not working on either like it use to. I guess if I cannot get the proper help with your plugins I could always change it to the ultimate member plugin or something else. Buddypress has an issue right now, at least with bulk activating, was trying to get a simple answer to what is wrong, but it seems your more concerned with not saying anything is wrong with your plugin instead of trying to help fix it.
August 19, 2015 at 7:04 pm #243391gametimemedia
ParticipantI know i can use BuddyPress Registration Groups since i just found it but it’s not a required field. I guess it does what i need but would be nice if it was a required field, even nicer if the group image was there instead of the check box.
August 19, 2015 at 1:34 pm #243378In reply to: Child theme – profile.php
muskokee
ParticipantSorry, part of the above is not true. I am using bp-custom.php. The only function in there is to disable BP registration.
//EDIT
Oh my! I just found this post https://buddypress.org/support/topic/bp-legacy-in-bp-templates/ . Am I supposed to be using the files from bp-legacy as this post suggests? If so, what a terrible name for a folder!
-
AuthorSearch Results