Search Results for 'registration'
-
AuthorSearch Results
-
June 11, 2015 at 11:30 pm #240618
Mickey
ParticipantRegistration fields and boxes look fine on large screens, but on mobile and ipad they get shrunk and boxes show (0 selected) you have to click on that for pull down list to show up.
This looks really poor. Is there a way to change that to show (Select) or just have the name of the field in the box?
For example I have a Gender Field (required)
son mobile it shows up like thisGender(required)
0 selected (inside a box)This almost gives an impression of some kind of an error.
How can I change that to show just (Select) inside the box?Thanks
June 10, 2015 at 11:07 pm #240576shaquana_folks
ParticipantI’m sorry @danbp, I’ve tried looking through those links that you sent, but I’m still very much confused. I cleared the cache, then I went in my Appearance > Customize link and typed in “MyLoopnetwork” as the Site Title, refreshed everything, went to try to create a user profile, and it still did the same thing. I’m still running these tests with the Twenty Fifteen theme. Is it possible for anyone to look from the backend of my site somehow to see what I’m doing wrong or if I’m not setting up something correctly? I’m new to all of this and just trying to get this registration page to work on my site.
June 10, 2015 at 12:10 am #240519shaquana_folks
ParticipantHi @danbp
Oh okay, so that’s what I did just now, I deactivated that cache plug in and cleared the cache of my site. But can anyone explain that bp-core-filters.php error message that’s still there in my error log (the “PHP Warning” error message is in my last message (in bold)? Because the registration page is still not working. I asked my hosting provider about that, but they said it’s an error that’s not coming from their end. Any ideas why that’s still happening?
June 9, 2015 at 9:20 pm #240509shaquana_folks
ParticipantOh okay, so since it’s working from your end, maybe you can help me. Any suggestions on what I can do or should do to get it to work on my end? I’m still running into the same issue of the users not being created, even while I’m still on the Twenty Fifteen theme with only the BuddyPress plug in (now at the 2.3.1 version), the bbPress plug in (now at the 2.5.7 version) and the W3 Total Cache (still at the 0.9.4.1 version) activated. Also, I went and checked the back end again from my hosting plan provider (as well as talked to a representative of my hosting plan service over the phone) and he noticed that there was actually a lot of errors listed for my sites link. The only thing is that the representative said all the other errors listed have been resolved because he doesn’t see any other error messages on those that are listed in the error log. The only one he still sees on there (and I just realized this as well) was this message:
PHP Warning: strstr(): Empty needle in /hermes/bosweb26d/b246/ipg.sjfgraphixcom/myloopnetwork/wp-content/plugins/buddypress/bp-core/bp-core-filters.php on line 781
Could this be the reason why the registration page is still not working? Because I never did any changes to that bp-core-filters.php file, I’ve only been working on the post pages and customizing my website theme that I wanted to use from before (which was the Magnus WordPress Theme). But as I was saying before, even though I’m still currently on the Twenty Fifteen theme, I’m still having issues. Please let me know what else I need to do to resolve this. My hosting plan server is iPage (which uses NGINX), running a 5.0 PHP version. I hope this additional information helps out.
June 9, 2015 at 5:36 pm #240496shaquana_folks
ParticipantHello @henrywright, was just trying to reach you for a follow up as to why my registration page is still not working, because I’m still running into the same issue of the users not being created, even while I’m still on the Twenty Fifteen theme with only the BuddyPress plug in (now at the 2.3.1 version) and the W3 Total Cache (still at the 0.9.4.1 version) activated. Also, I went and checked the backend from my hosting plan provider (as well as talked to a representative of my hosting plan service) and noticed that there was a lot of errors listed for my sites, including the myloopnetwork.com link). The representative I spoke to said that all the other errors listed have been resolved because he said he doesn’t see any other error messages on those that are listed in the error log. The only one he said he still sees on there (and I just realized this as well) was this message:
PHP Warning: strstr(): Empty needle in /hermes/bosweb26d/b246/ipg.sjfgraphixcom/myloopnetwork/wp-content/plugins/buddypress/bp-core/bp-core-filters.php on line 781
Could this be the reason why the registration page is still not working? Because I never did any changes to that bp-core-filters.php file, I’ve only been working on the post pages and customizing my website theme. Please let me know what else I need to do to resolve this. My hosting plan server is iPage (which uses NGINX), running a 5.0 PHP version. I hope this additional information helps out.
June 5, 2015 at 9:45 pm #240329In reply to: Register page “name required broken”
Henry Wright
ModeratorBut now I can delete this form NAME from the registration area?
I have no idea because I don’t know the theme you’re using. The best thing to do is contact the theme author because they will be able to see the theme’s markup/code and advise you how to do it.
June 5, 2015 at 7:37 pm #240318In reply to: Register page “name required broken”
Patryk
Participant@henrywright I send email to author 🙂
But now I can delete this form NAME from the registration area?June 5, 2015 at 6:20 pm #240314In reply to: Username displaying as ‘@Admin’ on profile
shanebp
ModeratorSince the member’s user name is ‘admin’, it will show as ‘@admin’.
You can’t change the user name after registration – unless you go directly into the database via a tool like phpmyadmin.
Or use a plugin like:
https://wordpress.org/plugins/admin-renamer-extended/also – you shouldn’t use ‘admin’ as a user name.
https://codex.wordpress.org/Brute_Force_Attacks#Don.27t_use_the_.27admin.27_usernameJune 5, 2015 at 11:32 am #240271In reply to: Username problems
Henry Wright
ModeratorIf you wanted to, you could disallow spaces in usernames by validating the field during registration. This is how you’d do it:
function zenimot_validate_username() { $bp = buddypress(); if ( strpos( $_POST['signup_username'], ' ' ) !== false ) { $bp->signup->errors['signup_username'] = __( 'Spaces are not allowed', 'buddypress' ); } } add_action( 'bp_signup_pre_validate', 'zenimot_validate_username' );
June 5, 2015 at 1:53 am #240250In reply to: how to add new members to groups automatically?
Sherry22
ParticipantWill any of these solutions work if you want to define the group based on email addresses?
I need to define school names and if the school name is in the email address (upon registration) the person will be auto joined to group. Any help would be appreciated, I am at a stand still.
thanks!June 4, 2015 at 6:32 pm #240217In reply to: BP registration form not creating new users
shanebp
ModeratorI don’t have a solution for you, but I use xampp and have no problems registering as a new user via the BP Registration form. The user is created and I can log in as that user.
June 4, 2015 at 4:52 pm #240212shaquana_folks
ParticipantOkay @henrywright, I’ll check about that error message with that bbPress plugin through their forum.
So I did what you recommended and turned off all the plugins (including the bbPress plugin) where I only have the BuddyPress plugin activated, with me still using the TwentyFifteen theme, went ahead and filled out the registration form once more, and it still took me right back to that registration page with my same information filled out that I did but left the password boxes empty and this is all still showing up each time the page loads up instead of creating the new user profile or redirecting me somewhere else.
June 4, 2015 at 4:26 pm #240209shaquana_folks
ParticipantSo as I deactivated all the plugins (except the BuddyPress and bbPress plugin) I noticed this error message from my Dashboard just now about the bbPress plug in. Could that be the one that causing the registration page to not work?
June 4, 2015 at 3:13 pm #240202shaquana_folks
ParticipantHello @henrywright
Thank you so much for replying back so quickly. And yes, I even tried it with the TwentyFifteen theme (which is currently at the 1.2 version). In addition, I just noticed that my BuddyPress plugin has an upgrade to now 2.3.0 so I went ahead and updated that as well. So when I tried filling out the registration page again, it still did the same thing even with that WP default theme. Any suggestions on why that’s still happening?
June 4, 2015 at 12:43 pm #240187American2020
ParticipantOMG Thanks mrjarbenne 😀 Now it works. Thanks a lot.
One thing I don’t understand/like why each member of the Network has now access to the BuddyPress Configs? I would prefer they not touching that. Plus they can also create Activity/Groups/Members Pages on they sites, I don’t like that, I would like all that to be centered on the root domain only, same for registration page and activation page. (Perhaps I activate too many options and I should uncheck one of them?)
I will add screenshots of the steps I followed so anyone having same issues can see how to get it to work, thanks to mrjarbenne steps 😉
June 3, 2015 at 8:48 pm #240130Topic: Log in Log out menu items missing
in forum How-to & Troubleshootingsoundling9
ParticipantThis is my second BP install. The first one works fine. I’m using the same theme Canvas by Woo. No plugins right now. I removed BP then reinstalled to no avail. The top menu shows 4 links: registration, groups, members and activity. I’m missing Login/logout. I looked in the appearance/menu settings and noticed that on my other install there is a panel just for BP menu items. That panel seems to be missing on this install. These 2 items seem to be generated by BP so I have no idea how to make them appear. I also commented out all my custom css but that didn’t do anything. The site I’m using for BP is in a subfolder of the main site. I created a new WP install inside the subfolder, activated canvas and added BP then I plan to just link to it from the main site. here’s the link. http://www.huguenotyc.com/hyc-members/
Thanks in advance for any help. BP is a great plugin! Chrome 43.0.2357.81 imac 10.9.5. (on Firefox even the WordPress top band is missing).June 3, 2015 at 8:51 am #240084Robert Hart-Fletcher
ParticipantYES!!! Only yesterday after ages of research I found a plugin: Unconfirmed.
Gives you access to Pending users:Unconfirmed creates a Dashboard panel under the Users menu (Network Admin > Users on Multisite) that shows a list of unactivated user registrations. For each registration, you have the option of resending the original activation email, or manually activating the user.
Robert
June 1, 2015 at 10:15 pm #240029In reply to: I NEED HELP! REGISTRATION PAGE NOT WORKING
shaquana_folks
ParticipantMy apologies @danbp I had a plugin called “BuddyPress xProfile Custom Fields Type” set up, that’s where the button came from. I just deactivated the plugin. But even when I still try to fill out the registration form, there’s no error that shows up this time, however, it takes me right back to that same registration page and it still did not create that new user for me. It would still just show up on the screen like this:
Any suggestions why this is still happening? Also, is there a good plugin that anyone can recommend for me to use so that when users create their profiles, they’ll be able to upload a profile picture?
June 1, 2015 at 8:31 pm #240020In reply to: I NEED HELP! REGISTRATION PAGE NOT WORKING
danbp
ParticipantHow did you create that download box on the register page ? This is not part of BP or WP.
June 1, 2015 at 7:54 pm #240016In reply to: I NEED HELP! REGISTRATION PAGE NOT WORKING
shaquana_folks
ParticipantHello @hnla,
Didn’t mean to be “shouting” through this message in the subject line, it’s because this is the 4th time I’ve tried to get my message through this BuddyPress forum and out of all my messages from a few days back, I noticed that this recent one I just did was the one that actually went through and I did the other messages just the same exact way as I’ve done before so I don’t understand why my messages haven’t went through the other times. So it’s just been a very frustrating time for the past couple of weeks trying to get help and I haven’t received further help so far from anyone so I’m just trying to resolve everything. But you’re right, and I’m trying my best to work with everyone to get the most feedback that I possibly can to get the job done and resolve these problems.
The off site frame 404 not found page should be working fine now. I just updated the permalinks and when I went to click on the register link, the registration page (as well as the actual website link) was working properly from my end.
As far as the BuddyPress plugin goes, I didn’t know that BP doesn’t have a setting for people to upload files, however when you go to the registration page on my site, there’s an “Choose File” section for people to upload a picture file (for their profile page) on there as someone is filling out the actual registration form, so I just assumed that feature automatically comes with the BuddyPress plugin.
There shouldn’t be nothing wrong with the theme for I had double-checked already from my backend and I spoke to a representative through my hosting provider and after explaining everything to them, they said that I would have to get in contact with one of the BuddyPress developers to resolve the issue and if it’s an issue from the hosting plan, to inform me about it that way I can contact them again to let them know what the specific problem is. So I’m basically going back and forth between BuddyPress and my hosting provider explaining the same thing, therefore I’m pretty much stuck on what to do, so that’s why I’m asking for anyone’s help if possible, because I’ve done everything on my end to the best of my ability.
So here are some screenshots that I hope will be helpful of what I actually was doing through the registration process and hopefully someone can come up with a solution as far as why this is not working properly:
SCREENSHOTS FROM MY MAGNUS WORDPRESS THEME FOR REGISTRATION PAGE:
Screenshot 1
Screenshot 2
Screenshot 3
Screenshot 4
Screenshot 5
Screenshot 6
Screenshot 7Then I did the same exact process with one of the WordPress default themes from my dashboard:
SCREENSHOTS FROM THE TWENTY FIFTEEN WORDPRESS THEME FOR REGISTRATION PAGE:
Screenshot 1
Screenshot 2And as you can see, the same result happens. So can someone please explain to me why this is happening? Is it a BuddyPress coding issue? Or is it from my end? Any feedback would be greatly appreciated.
Thank you.
June 1, 2015 at 5:06 pm #240010In reply to: Nothing works after update to 2.2.3.1
danbp
Participanthttp://www.careercoach.it/members/ shows the list correctly.
It’s the main “member” menu who doesn’t work with your ??? member types (player/coach/corporate)
Check the link.
If you want to use member types, follow here.June 1, 2015 at 2:22 pm #240000In reply to: I NEED HELP! REGISTRATION PAGE NOT WORKING
Hugo Ashmore
ParticipantFirstly please don’t type subject lines in all caps, it’s considered rude and to be shouting, it will not get you any of a faster response only remarks like I’m making 😉
Secondly why link us to your site asking questions about registration when all of your site links re-direct to an off site frame 404 not found page?
Registration in BP is a simple process with few fields to complete uploading files not one of them, so have you extended your registration process with custom functionality, if so explain that in detail.
When setting up a new WP/BP site one should check the basics work such as registration before taking the site any further in development terms, if not sure whether your theme could be a factor in issues you should test that the basics work using a standard WP bundled theme i.e twenty fifteen.
So you need to confirm some simple test, and if issue persists detail your registration process steps and any customizations you have in place if people are to be able to help at all.
May 30, 2015 at 12:17 pm #239903In reply to: Auto assign new member to group upon registration
danbp
ParticipantIf you feel comfortable with php, here’s a gist from @imath to autojoin users to groups.
Modify it to add the member_typeA little different, BuddyPress Registration Groups
May 27, 2015 at 1:05 am #239725In reply to: [Resolved] White Screen on Register
mcmenace
ParticipantFixed*
Was able to deactivate all plugins on the registration page and everything worked properly.
Thank you.
May 26, 2015 at 12:37 pm #239702In reply to: Join button for non-members
Hugo Ashmore
ParticipantYes you need to be registered before you can join groups, joining a group means needing to add the person as a member ID which they can only have if a WP registered user.
There are plugins though that can do things like auto join groups on registration but to a pre-selected set of groups, if you wanted the user to be able to pre-select a group at registration you would need to write a small function to store a choice as user_meta or similar and recall that when the user activated their account.
On a side note if you’re working up a child theme based on twentyfifteen it would be a good idea to be running a copy of BP trunk as we will introduce a new series of stylesheets for the WP Twenty* themes which may affect what your styling.
-
AuthorSearch Results