Search Results for 'registration'
-
AuthorSearch Results
-
February 28, 2015 at 12:46 am #235261
rosyteddy
ParticipantFebruary 27, 2015 at 10:57 pm #235258MarionetteX
ParticipantI’m not sure that Invite-Anyone does what I need it to. I don’t see any option to lock down the site so that an invite is required to join. What I really want is a form on the registration page that asks for an invite code so that someone has to enter a valid invite code in order to join.
I’m sort of working around things right now with a “security question” on WangGuard that I’m using as a password instead (by setting up a question with a non-word, pretty much unguessable answer). Still, actual invite codes would be nice.
February 27, 2015 at 5:46 pm #235246In reply to: Registration is not working
@mercime
Participant@tendersqatar Enfold is a premium WordPress theme which we have no access to so it would purely be guesswork to assess what’s going on in your installation.
Please change to the Twenty Thirteen or Twenty Fourteen theme and check if registration is working in your local installation. If you encounter the same issue using those themes, could you give a step by step instruction on what you did and where in the registration process the error occurred.
February 27, 2015 at 5:04 pm #235245In reply to: Theme & Plugin Issues
@mercime
Participantfor some reason my nav bar (which has dropdowns to sub-pages of the site) doesn’t work properly
@themusicbusinessnetwork For this issue, please contact the theme developer as we have no access to the premium theme.… where I can’t set up user registration properly. I have the fields setup but something with the pages that I direct them to don’t work
Could you please clarify what you mean by “pages that I direct them to”? Are you referring to template redirect after submitting registration form or something else?
I also am having issues updating the Theme. WordPress is giving me an error message saying the data is already there and it can’t install.
As mentioned above, we have no access to the premium theme. But to help you find the possible causes, change to Twenty Thirteen or Twenty Fourteen theme, are the issues resolved or still there? That way, you could provide the theme author more information about the issue. Recommend that you share what shows up in error logs.
February 26, 2015 at 9:55 pm #235208In reply to: How to disable BuddyPress Registration
Vanish.Sequence
ParticipantUpdate: Turns out another plugin had caused this error, and it is repaied now. The name of it was Frontend or something like that, it disables access to things like the registration and such for security, and idk how I missed that, but yeah.
Thanks for the fix!
February 26, 2015 at 8:07 pm #235197In reply to: How to disable BuddyPress Registration
Vanish.Sequence
ParticipantThis was the question I had, and when I put this into the folder, I then got an error asking me if I was sure I was supposed to be doing this.
Are there any other steps to this that I need to be aware of?
The URL given was mydomain.com/user-error/?message=nononce
I am really not sure how to get past that.. I did disable the registration and activation pages in the BP Page settings.
February 26, 2015 at 3:17 pm #235178In reply to: How remove header/footer from Register page?
Hugo Ashmore
ParticipantRegistration page If you are on the registration page, BuddyPress will use the following template hierarchy: /buddypress/members/index-register.php The rest of the base templates as listed here.
If you now rename the existing file you have overloaded as per the instructions for working with BP templates in a theme or child theme to the above what will happen is that BP will consider it a template handling and indeed needing all the necessary template parts i.e header and footer and all parts in between – think of the file now as similar to your page.php template but with the register content where the page loop for title and content would be. You now can traet this file as standalone and modify as you require.
February 24, 2015 at 9:40 pm #235114In reply to: How remove header/footer from Register page?
SimpleOne
Participant@hnla thank you for the guidance. FWIW, I did try doing as much research as possible (and trying out a few things) before posting my question here.
I reviewed the information contained in the link you provided. Thanks for that. But after reading through that information, what I’m still unclear about is how/what template I should modify in order to affect ONLY the BP Registration page. (FYI, I’m not a php developer, so I do need a bit of hand holding for some of this kinda stuff.)
I read through the info on how to “Customize the layouts of BuddyPress pages within the WordPress Default Themes”. However, the instructions provided there seem to apply to scenarios where a site admin is wanting to make page template changes that apply to all BP pages on a site (i.e., by placing a customized buddypress.php file in the child theme folder).
In my case, I’m only wanting to change a single page (the Registration page) to remove the headers and footers. So I’m still unsure how I would go about doing that (even after reading through the info). Thank you very much for any specific guidance you can provide me with to accomplish this.
February 23, 2015 at 11:02 pm #235050kobrakai75
ParticipantThat’s exactly what I’m trying to achieve. With the new Member Types in BP 2.2 it would so useful if members could select the type during registration, hopefully there’s a way!
February 23, 2015 at 10:45 pm #235049In reply to: Register and Activate Association Problem
Matt2012
ParticipantFor me the issue was
1) Allow registration in general settings
2) After enabled s2member plugin I needed to allow Open Registration in s2member > General OptionsFebruary 23, 2015 at 9:20 pm #235047In reply to: Login button sends to standard WP login page
hutchison
ParticipantThanks, @rosyteddy, I’ll try that. But at the same time I’m also looking at alternative sidebar login plugins. I’ll let you know if I find a good alternative (viz. link to full registration form + doesn’t display WP admin bar)
February 19, 2015 at 9:32 pm #234820r-a-y
KeymasterIf you’re using GF’s registration plugin and you do not associate a register page with BP, you’ll have to ignore the notice in the admin area.
Two alternatives I see:
1. Add a register page with BP, but use it as a dummy to avoid the notice. WHen someone attempts to go to this dummy page, write a small plugin to redirect to your GF register page.2. Add a register page with BP, but override the BP registration template so it will use GV’s registration form. Not sure if BP’s validation will try to force certain fields to be completed if you use this method and someone submits the form.
February 19, 2015 at 8:58 pm #234817mibrenner
ParticipantI’m confused as to what you’re asking @greenkoi.
I’m using the User Registration Add-on, which populates BuddyPress custom fields.
What switch are you referring to?
February 19, 2015 at 5:57 pm #234804greenkoi
ParticipantAre you using the GF buddy press plugin ?
I forgot to make the switch under the options to.
February 18, 2015 at 11:01 pm #234721In reply to: How to disable BuddyPress Registration
mcpeanut
ParticipantHi @aluxi33, this can easily be done via this code
function my_disable_bp_registration() { remove_action( 'bp_init', 'bp_core_wpsignup_redirect' ); remove_action( 'bp_screens', 'bp_core_screen_signup' ); } add_action( 'bp_loaded', 'my_disable_bp_registration' ); add_filter( 'bp_get_signup_page', "firmasite_redirect_bp_signup_page"); function firmasite_redirect_bp_signup_page($page ){ return bp_get_root_domain() . '/wp-signup.php'; }
What you will need to do is first create a bp-custom.php file (make sure you add the opening and closing tags at the top and bottom ) and put it in your plugins folder, then paste the code between the php opening and closing tags and save.
This should disable buddypress registration and let you use wordpress registration as default, hope this helps.
February 18, 2015 at 1:01 pm #234669In reply to: cant create topics for standart users
wolfied
ParticipantAll right, here we go:
http://inviteshare.net/groups/world-wide-news/forum/Noone can create any any topics under this Entire forum. It’s not just one topic, but instead, none works. So, for the public groups, anyone should be able to post without joining this. Even the members are complaining about it. If needed, I can give you moderator/admin access to the forum for your helping me out.
WordPress 4.1 running OneCommunity theme.
bbPress 2.5.4
BuddyPress 2.218 active plugins.
Achievements
Akismet
bbPress
BP-WP Profile Reviews
BuddyPress
Contact Form
Mass Messaging in Buddypress
myCRED
Quick Cache
Register IPs
SI CAPTCHA Anti-Spam
Simplr User Registration Form Plus
Stop Spammer Registrations Plugin
TinyMCE Advanced
WP-Polls
WP Slimstat
WP SMTP
WP User ControlFebruary 17, 2015 at 6:59 pm #234622In reply to: Entry Page
Yolanda
ParticipantThank you. The problem I encounter is once a user is logged in if clicks on the logo goes to my welcome page which is login and registration options. You can test it here http://www.thetrainerdirectory.com
February 15, 2015 at 10:56 pm #234534In reply to: Entry Page
danbp
ParticipantOnce BP is installed and you allowed user registration, you have already a register page.
Simply go to dashboard > general > read and select this page as (static)homepage.For the layout, see
and searching for homepage on the forum leads to many result. 😉February 15, 2015 at 12:52 pm #234510In reply to: Adding Member Registration Form to New Pages
ch1n3s3b0y
ParticipantHi @henrywright
I was thinking of just taking the code from register.php. Do you think this would work?
Also, (I commented on this in another thread), where does the data from the form get processed?
I am thinking of adding a hidden field with a member type value in it (Different registration forms for different members) and having a conditional statement when the data gets processed as to whether that member is ‘member type a’, ‘member type b’ etc. and their user roles, but I’m not sure where the data is actually getting processed.
February 15, 2015 at 12:48 pm #234508In reply to: Adding Member Registration Form to New Pages
Henry Wright
ModeratorHi @ch1n3s3b0y
I don’t think there’s a template tag or shortcode available which will let you insert the registration form. To the best of my knowledge, if you want the form in multiple templates then you have to insert the form manually.
February 15, 2015 at 11:57 am #234506In reply to: Multiple Registration Forms?
ch1n3s3b0y
ParticipantHi KSimpson
I’m looking for the same thing. I’m going to be connecting up user roles with ‘member types’ when people register. My issue is having two different member types and allowing them to register separately and the back end automatically assigning the correct roles and types.
What I was thinking was to simply pull out the registration form from register.php and put this into a custom template. I was then thinking to pass a hidden form field with the member type in. Where the form data is processed I will have a conditional statement that says “if $_POST[“expert”] = “expert” then this member type is registered and it’s this role. etc.
My issue is, where is the registration form data processed? It has a blank action attribute so I don’t know where the data goes.
February 14, 2015 at 5:13 am #234470Topic: Multiple Registration Forms?
in forum How-to & Troubleshootingksimpson1986
ParticipantI’m finding old articles about this issue around 3 years old. i just can’t find an answer to this. figured i would update the question…I have two completely different Groups “Promoters” and “Bands”. each requiring two completely different sign up forms. when the promoter goes to sign up for the promoter group, i need the registration form to have all the fields for just the “promoter”. same for the band. there’s several different fields that are REQUIRED for the band, but not for the promoter. does anyone have any ideas or plugins? surely there has to be an option. thanks everyone!
February 14, 2015 at 12:33 am #234462In reply to: Preventing spam registrants?
djsteveb
Participant@jessiewordpress – might want to check out either “good question” (change default question / answers!) – or ‘buddypress humanity’ as well. They have made a huge impact on the spam registration issues we used to deal with.
February 13, 2015 at 10:09 pm #234448In reply to: Preventing spam registrants?
Henry Wright
ModeratorPersonally, I’ve found the honeypot approach to be quite effective. Try Justin Tadlock’s Registration Honeypot plugin.
February 12, 2015 at 8:30 pm #234365In reply to: Buddypress Settings Won't Save?
Alice-Claire
ParticipantYes, that’s right. The Anyone Can Register button won’t stay selected and then that message comes up.
I’ve had to temporarily set up a contact form to collect email addresses and usernames so that I can manually set them up. I’ve had almost 20 new registrations since yesterday, so this is becoming a very serious problem.
-
AuthorSearch Results