Search Results for 'registration'
-
AuthorSearch Results
-
January 19, 2015 at 9:56 pm #232558
In reply to: Customizing emails template
capeleng
ParticipantWell, I kept searching and found the solution to my problem. Check out this post on StackExchange:
http://wordpress.stackexchange.com/questions/15304/how-to-change-the-default-registration-email-plugin-and-or-non-pluginIt worked like a charm for me.
January 19, 2015 at 9:12 pm #232557In reply to: Customizing emails template
capeleng
ParticipantI have used Henry’s method to customize the activation link email, but now I want to tweak the registration email. That’s the email that goes out after the user clicks on the link. How can I filter that?
January 15, 2015 at 8:59 am #232407In reply to: [Resolved] WP_DEBUG Notice for bp_setup_current_user
phbernard
ParticipantHi,
I’m the author of the Favicon by RealFaviconGenerator plugin.
Just to follow up: the plugin v1.2.10 fixes the issue.
The issue can caused by a early call to is_super_admin. This function was called to decide if some action registrations were necessary or not. The fix was to move all these to a function called upon the init action. No more warning!
John, would you confirm you don’t have the warning anymore?
January 14, 2015 at 3:57 pm #232274In reply to: sign up page not working need help
@mercime
Participant@jkpi56 have you enabled registration at Settings > General? Are registration and activation pages assigned to Pages in Settings > BuddyPress > Pages?
January 14, 2015 at 4:51 am #231932In reply to: Registration Form ShortCode
modemlooper
ModeratorThis might help http://buddydev.com/plugins/bp-ajax-registration/
January 12, 2015 at 4:56 pm #231871In reply to: Registration Process failure
rathodsuraj1
ParticipantSee this : https://buddypress.org/support/topic/registration-not-working-7/
Hope this will help.
Thanks
Suraj.January 11, 2015 at 2:11 am #231735djsteveb
Participant@juliantrueflynn
Might also look into – https://wordpress.org/plugins/unconfirmed/I have used that to resend activations, the plugin description says it can “deleting their pending registrations,” – but not sure if that means is removes them from the database or whatever.. I have not tried using it in that manner. This plugin might also limit the amount of users you can mess with to 20 or 40 at a time – so it may be too tedious to do what you need anyhow. Haven’t played with it a while, and not sure if it’s been updated to add new functions since I used.
Others finding this thread may benefit from that plugin, or not – just a thought.
January 9, 2015 at 2:36 am #231669bp-help
Participant@tatakatte
Did you make sure you set your registration page as a static page in dashboard/settings/reading because I just tested it and it works as expected. On my dev environment when I go to the site without being logged in it redirects me to the registration page. Once I log in it redirects to the activity stream. Isn’t that what you wanted?
@henrywright
I didn’t use any priority and it worked so I don’t think that is the issue. Your code worked fine when I tested it as is.January 8, 2015 at 10:05 pm #231642In reply to: 404 Page for Activity, Groups, Members
timothylegg
ParticipantI am in as an admin. I go to Settings, then to BuddyPress. When I click Pages, I see two sections: Directories and Registration. Under Registration, Next to the text “Members” is a dropdown menu with a number of choices. It doesn’t matter which item I choose, when I click the “View” button, I get the webserver telling me that /members does not exist on the server. The other items, “Activity Streams” and “User Groups” have a similar behavior.
Going into my DirectoryRoot path and create those folders didn’t do much good. Yeah it fixed the error, but I don’t think that’s how it is really supposed to work.
January 8, 2015 at 3:06 pm #231619In reply to: Registration Page not working
disha76
ParticipantGo to wp-admin/network/admin.php?page=bp-page-settings
Find:
Registration
Associate WordPress Pages with the following BuddyPress Registration pages.Now create a New Page and save it with the name – register
and then choose it from the drop-down and save settings.January 7, 2015 at 4:25 pm #231594In reply to: Registration Process failure
angs77
ParticipantHi I’m having the same issue.
Registration page is there, but can’t get the registration fields to show up and when I click on register on the top WP toolbar I keep getting
The resource you are looking for has been removed, had its name changed, or is temporarily unavailable.
January 5, 2015 at 12:41 am #231482In reply to: Hook for when a user first logs in
Henry Wright
ModeratorJanuary 5, 2015 at 12:23 am #231481In reply to: Hook for when a user first logs in
ndh01
ParticipantIt doesn’t work for me, perhaps because I’m using gravity forms for user registration.
January 4, 2015 at 10:32 pm #231475In reply to: creating custom link
tsabar
Participanti’ll need to pull it from the database like bp_core_get_user_displayname(), but the first and last name are custom fields i created in the buddypress registration form (http://www.cbtnest.com/img/regfields.jpg), how/where can i find out what those variables are named?
January 4, 2015 at 8:37 pm #231469In reply to: creating custom link
Henry Wright
ModeratorHow exactly you get the first and last name variables depends on the context in which you’re using the link. It’s important to state, the variables aren’t always available.
Some examples, when the user clicks submit, you could access the first name and last name server side via
$_POST
variables.$_POST['field_1']
for first name and$_POST['field_15']
for last name (according to your registration form markup). Alternatively, after the information has been saved to the database, you’ll be able to access the member’s first and last name via functions made available by BP such asbp_core_get_user_displayname()
Hope this helps
January 4, 2015 at 8:27 pm #231468In reply to: creating custom link
tsabar
Participanton my wordpress/buddypress site i want to offer webinars that users can register to with one-click using a properly formatted link, basically just need to know how to output the first and last name buddypress variables from the registration form, like you showed me above with the email address…
January 4, 2015 at 7:33 pm #231465In reply to: creating custom link
Henry Wright
ModeratorJust looked over the code you’ve posted. That doesn’t really help. That’s just the code to display the registration form for the user to complete when signing up.
January 4, 2015 at 4:58 pm #231461In reply to: creating custom link
Henry Wright
ModeratorYour registration page code which you linked to.
January 4, 2015 at 4:27 pm #231458In reply to: creating custom link
tsabar
Participantright, thanx, but how can i get the buddypress variables for first name and last name? here’s the registration page users fill out:
December 29, 2014 at 10:29 pm #231242In reply to: Hook for when a user first logs in
Henry Wright
ModeratorHi @ndh01
I’m not aware of a hook that fires on first login only. A way around that might be to add a meta key to the user’s meta on registration and then check for that on each login attempt. You’d need to remove the key after you’ve performed the check (if the key exists). If no key exists, then the user has logged in before. Just thinking out loud here… 🙂
December 29, 2014 at 7:46 am #231187In reply to: [Resolved] Required template files
Luke Mackenzie
ParticipantThanks again for your reply. For others with the same issue and to answer my question, you need to create the missing pages via the admin dashboard and then select those new pages in
Settings -> Buddypress -> Pages tab -> Registration
sectionDecember 28, 2014 at 9:48 pm #231179In reply to: [Resolved] Required template files
danbp
ParticipantActivation and registration are WordPress dependant and are not only “BP components”. These pages may not be created automatically, depending your WP settings… But according to the error message, you have now to create them.
I understand that you are a bit confused, as you’re in a discovery phase of BuddyPress.
But you should also understand that i can’t explain step by step the whole Codex (WP & BP!).I guess you have to read the doc very attentively. Searching the forum or simply reading some topics will also help you to understand how all this is working.
Install first correctly WP and BP and use one of the Twenty theme, the time for you to learn a bit more. Once you’re comfortable with WP & BP, start your theme development.
December 28, 2014 at 4:33 pm #231172In reply to: [Resolved] Required template files
Luke Mackenzie
ParticipantI tried copying the
registration
subfolder from thebp-default
theme but these don’t appear in the dropdowns at therepair
link in the error messageDecember 26, 2014 at 11:34 am #231053In reply to: Buddybar issues with wordpress 4.1
Vibral
ParticipantOk, trash emptied and slugs fixed.
There are no improvements however – when I log in, the META section still shows that I can log in or register. I would expect log in and register to be replaced with log out and other membership options.
Also I’ve noticed that my registration page is not hxxtp://vibral.co.za/register/ but rather
hxxp://vibral.co.za/wp-login.php?action=register. Not sure if this is an issue.December 23, 2014 at 1:16 am #230920In reply to: Restriction for registering
bp-help
Participant@surenpillai
Have you tried: https://wordpress.org/plugins/bp-registration-options/ ? -
AuthorSearch Results