Search Results for 'registration'
-
AuthorSearch Results
-
May 6, 2015 at 3:18 pm #238747
In reply to: Installation help for group & sitewide forums
RecDC
ParticipantThanks a bunch @danbp. Now off to figuring out how to get past the “user registration not allowed” issue and then I’ll good to go.
Thanks again. 🙂
May 1, 2015 at 4:16 pm #238611In reply to: Private Group Forum Visibility
matrixd
ParticipantThanks for response.
I know about group roles.
I probably use a PUBLIC group but I need to control which become a member for my group!
If I use PUBLIC group is there any plugin to control user registration to that group?April 30, 2015 at 8:07 pm #238585In reply to: Activity Feed not showing new members
aaronkine
ParticipantGreat! I will pass this info onto the developer and see what they say. I’ll let you know how it goes.
just for more reference… here is are the Two Support Topics i started with the developer.
https://wedevs.com/support/topic/registration-form-post-to-bp-activity-new-member/Here is the ongoing ticket, Started a New Topic after the Buddypress update prevented it from working again.
https://wedevs.com/support/topic/buddypress-activity-feed-not-showing-new-members-wpuf-registration-form/April 30, 2015 at 6:04 pm #238582In reply to: Activity Feed not showing new members
Mathieu Viet
ModeratorWell, i think they are complicating their task.
It seems to me that to be sure BuddyPress will do all what it needs to do, you simply need to use :
do_action( 'bp_core_activated_user', $user_id );
eg:
function on_user_registration( $user_id, $userdata, $form_id ) { $this->update_user_data( $user_id, $form_id ); do_action( 'bp_core_activated_user', $user_id ); }
Because we hook to this action to :
– clear the member count cache
– create the ‘new_member’ activity
– Sync WP/BP profile if the xProfile component is activeIf that doesn’t fix the issue. A BuddyPress plugin should always launch itself hooking ‘bp_include’ to be sure every active BuddyPress parts are loaded.
So instead of
add_action( 'plugins_loaded', 'wpuf_bp_init' );
the plugin developer can tryadd_action( 'bp_include', 'wpuf_bp_init' );
April 28, 2015 at 10:42 pm #238530In reply to: Hide Pending Registrations from Site Activity
shanebp
ModeratorYou really should ask the plugin authors this question using their support forum:
https://wordpress.org/support/plugin/bp-registration-optionsI’ve never used their plugin, but do you have ‘moderation’ turned on?
From their readme file:* Hide “Person became a registered member” from activity stream if moderation is turned on until person is approved.
This will prevent new registrations from showing in site activity, regardless of whether you’re using their plugin… but maybe you need something else?
remove_action( 'bp_core_activated_user', 'bp_core_new_user_activity' );
April 27, 2015 at 8:25 am #238428In reply to: [Resolved] No Registration Page visible
thunderbastard
ParticipantOK, I just created both the “Register” and “Activate” pages in WP and left them both blank.
I pointed to both of those pages in BP (see image above).
Registration now apparently works.
Thanks for your help, @danbp.
April 24, 2015 at 11:29 pm #238327In reply to: Does buddypress require a theme to work?
Marcella
ParticipantYeah, also make sure you have registration enabled in wp-admin/discussion I think.
April 24, 2015 at 10:50 am #238308In reply to: FATAL ERROR: BuddyPress 2.2.3 – Security Release
imakerin
ParticipantHello!
While i register new user from buddypress after click complete registration its make error as below
Fatal error: Cannot redeclare class phpmailerExceptionI reinstalled it but error not gone so please help me for that
thank you
April 23, 2015 at 11:42 am #238264In reply to: [Resolved] Error on user registration
danbp
ParticipantHave you assigned a page to “registration” ?
Again: each active BP component should have his own page.April 23, 2015 at 11:31 am #238262In reply to: [Resolved] Error on user registration
fugu78
ParticipantOk sorry, i hadnt set up permalinks. The register no longer goes to an internal error page but it goes to a blank page in the website now? Should i see a registration form?
April 22, 2015 at 6:39 pm #238217In reply to: Buddypress popup registration form
Henry Wright
ModeratorApril 21, 2015 at 5:11 pm #238171In reply to: Register page password strength and hint
Henry Wright
ModeratorOn the registration page, the password shows a strength meter from weak to strong. However, I have had a few testers mention that no matter what password they use the meter always says ‘Weak’
This is definitely a problem. As your testers provide more obscure passwords, the meter should start to increase from weak to strong
April 21, 2015 at 2:14 pm #238156In reply to: Register page password strength and hint
Henry Wright
ModeratorWhich theme are you using and have you customised the registration page in any way?
April 20, 2015 at 8:57 pm #238130Glenn
Participantwas just looking at that one, thanks very much. not quite what i wanted, so I just changed the Checkboxes to Radio buttons in the BP Registration Groups plugin. guess that’ll work…
April 20, 2015 at 4:07 pm #238103In reply to: Made custom register page, now honeypot doesn’t work
juliantrueflynn
ParticipantYes to the first, no to the 2nd — to be direct, not sure you’re following…
You just gave steps for overall spam reduction (which, thank you), what I’m referring to is a problem that occurred from the custom registration page. I’m talking in the matter of an hour I went from no spam to lots of spam because of the custom registration page which code I gave above. What would cause that and how can I fix it?
Why would this custom page cause the issues and why would the Honeypot plugin you gave not fix it or my old code — it’s doing the same thing I had before that worked perfectly? I could remove the custom registration page and the spam would stop, but I rather keep it though since I don’t want the default registration page.
April 20, 2015 at 12:50 am #238075In reply to: Made custom register page, now honeypot doesn’t work
juliantrueflynn
ParticipantHm, so I added that plugin first to see if that would do anything. The spam requests are still very high (user spam sign-ups). Again, I’m just comparing this to before I did the new custom registration page – the code I put above in codeshare.io.
April 18, 2015 at 9:44 pm #238018In reply to: [Resolved] Redirecting Register link
Antipole
ParticipantI have a solution for this – although not particularly neat.
I took a copy of the BuddyPress Core Component Widgets and changed all occurrences of bp_core_register_widgets to, in my case, bp_ovni_core_register_widgets, and placed it in the bp-custom.php file. This gave me a new widget that I could place in the side bar instead of the standard (BuddyPress) Log In. This change seems necessary to avoid a re-registration error.
I then edited the action after <?php if ( bp_get_signup_allowed() ) : ?> to go to my information page instead of the register page. From that page I link to my actual registration page, where the register form is displayed.
It all seems to work for me.
April 14, 2015 at 6:39 pm #237882In reply to: Remove Email requirement
Dani-Girl
ParticipantHi Shane,
I’m not seeing any of the suggested puglins ( Optional Email or Registration Plus Redux as they are the only 2 that meet my criteria) showing up in the Buddypress registration process.
Since we have to assing buddypress registration pages, only buddypress’s fields are showing.
If i deactivate buddy press and use the wplogin registration procedure, then either plugin works fine.
what can I do to change it so that when buddypress is active and using its registration page, that either plugin’s options are showing up?
April 14, 2015 at 4:58 pm #237876In reply to: Remove Email requirement
shanebp
ModeratorThe email requirement is a WP requirement.
There are various code snippets and plugins to get around this requirement – whether creating users only thru the Dashboard or through open registration:
https://www.google.com/?gws_rd=ssl#q=wordpress+registration+email+optional
April 14, 2015 at 1:22 pm #237865In reply to: Set user role on registration so can upload files
danbp
ParticipantBuddyPress doesn’t handle the Media Library.
BuddyPress doesn’t handle registration.It’s a bad practice to allow users to upload something to your site until they’re not fully registered. When a user register, WP considers this new account as pending. As long as the user hasn’t activate his account with the activation key, he can only visit the site.
As you installed BuddyPress, i suggest you use your site à la BuddyPress.
If you want your members be able to upload files, use BuddyDrive. Each user can upload files from within his profile page and can share them on different levels (public, private, friends only). And much better as the Media Library default behave, each document belong to his user. BuddyDrive attributes a folder to each user who upload a document.This is much simplier, well integrated and efficient in a members community as strugling with custom code (and potential errors and security issues).
April 14, 2015 at 12:08 am #237847In reply to: Warning of Buddypress
rohi222
ParticipantI haven’t got the answer of my initial query of <b>Warning</b>: strstr(): Empty needle in <b>../wp-content/plugins/buddypress/bp-core/bp-core-filters.php</b> on line <b>641</b><br />
Please help me out with this.
As far as the register link is concerned it looks the same as it has been shown on the demo when I activate the admin bar for non-logged in user it is having login and registration option out of which only login works and clicking on register link doesn’t have any effect.
April 12, 2015 at 11:52 pm #237792In reply to: Activation Key not working
modemlooper
Moderatoris this site already active with users? You might need to reinstall everything fresh.
Read this thread, its probably the same issue, has some suggestions. https://buddypress.org/support/topic/new-user-registration-problem-invalid-activation-key/
April 12, 2015 at 6:10 pm #237756In reply to: Create Custom Page of Registration
danbp
ParticipantYou said first:
I would like to create a page for user registration and another page for editing the profile with more options.This is a resume of how BP already works.
The registration page can be extended (BP xprofile component) and user can fill out these additionnal fields from within their profile page.Please take a look on Codex, before reinventing the wheel.
April 12, 2015 at 2:21 pm #237730In reply to: [Resolved] Redirecting Register link
Antipole
Participant@henrywright – thank you for responding
I set up a bp-custom.php file and am able to redirect as you suggest.
The condition I am using is
if ( bp_is_register_page()) {
This works in that any attempt to land on the register page gets redirected to my own pre-registration information page. But when I follow my ‘go ahead and register’ link, I get redirected back to my pre-registration information page. Since the re-direction happens as the registration page is about to load, I do not see how to get to registration when I need to.
I really need to divert the BP register links without stopping me going direct to the register page when the user is ready.
Any further advice would be much appreciated.
April 10, 2015 at 1:56 pm #237615Henry Wright
ModeratorYou just need to put some validation on the registration form. So, if a user decides to enter a looooooong username, then an error is displayed on screen letting the user know there’s a max length to that particular field.
-
AuthorSearch Results