Search Results for 'registration'
-
AuthorSearch Results
-
November 2, 2014 at 5:54 pm #228155
JohnnyJonJon
ParticipantThanks for the feedback guys- I tracked the issue down to a piece of jquery in the theme’s custom.js file line 289 – 292:
$(".submit").click(function () { $(this).closest("form").submit(); });
Commenting this out fixes the issue. Not sure why this global takeover for the submit is in the theme, but it just happened the buddypress form also has a div with the same class. Not sure how disabling affects the other forms and such for the theme itself, but at least BP registration works again!
Thanks, Jon
October 31, 2014 at 11:15 pm #228061In reply to: [Resolved] Buddypress Suffering Major Issues
Scott Hartley
ParticipantI am going to answer the questions like in your support outline then add additional information below.
1. 4.0
2. Directory
3. Root Directory
4. No Buddypress was installed after
5. Yes everything was in order permalinks, and other plugins were 100% functional.
6. Latest Version 2.1.1
7. NO
8. Yes i stated above my currently installed plugins that are active (All are active if i forgot to mention sorry)
9. It appears to be the default theme Jarida doesn’t seem to be doing anything else.
10. Nope
11.No
12. Most recent version of course 2.5.4
13. Error Log is empty o.o
14. Hostgator Baby PLan
15. Linux (according to company page: http://support.hostgator.com/articles/pre-sales-policies/are-your-servers-unix-linux-or-windows-nt )Additional Issues
All users are marked as spam.. I was reading on some earlier issues and everyone is marked as a spammer upon registration in the extended profile tab. There are also no groups in the extended profile tab which is odd and I cant create it without it giving me an error saying“There was an error saving the group. Please try again”
October 30, 2014 at 10:33 pm #227996In reply to: Where is the option to register?
Henry Wright
Moderator1. The registration form is usually at somewhere like example.com/register/
2. You can add the following to your theme’s functions.php file should you wish to remove the admin bar:
add_filter( 'show_admin_bar', '__return_false' );
October 30, 2014 at 10:32 pm #227995In reply to: Where is the option to register?
Paul Wong-Gibbs
KeymasterWe don’t have our own option for that. Use WordPress’ “allow registration” option which I think is in wp-admin > Settings > Reading.
Regarding the bar, no. Again, it’s WordPress’ bar, and there are probably helper plugins which will turn it off for you (or code snippets); you should be able to find something on Google pretty easily.
October 30, 2014 at 4:45 pm #227969Tanner Moushey
ParticipantGreat, glad that fixed it! You can see the list of WP actions here: https://codex.wordpress.org/Plugin_API/Action_Reference.
To limit this redirect just to the home page update it to something like this:
add_action( 'template_redirect', 'redirect_visitors' ); function redirect_visitors() { if ( !is_user_logged_in() && is_front_page() ) { wp_redirect( site_url() . '/my-site-registration' ); exit; } }
October 30, 2014 at 4:41 pm #227968braun_trutta
ParticipantDISCO! You’ve done it! Now to find out what template_redirect is? I suspect it fires after init and the page now knows more about what’s going on? Also, How would I modify this so that the non-logged in user is only redirected to the registration page if they visit the home page (in other words, I would like them to have access to the rest of the site)
Thanks so much for your help!
October 29, 2014 at 4:19 pm #227929focallocal
Participantthis issue is posted all across their forums and no-one has ever received a decent reply from BP dev’s.
here’s just a few of the many i’ve read trying to solve this over the past week:
https://buddypress.org/support/topic/registration-reload-error-lets-get-this-solved/
https://buddypress.org/support/topic/buddypress-refreshing-on-register-to-blank-page/
https://buddypress.org/support/topic/buddypress-register-page-not-working-just-refresh/
https://buddypress.org/support/topic/impossible-to-registerbuddypress-registration-process-broken/
https://buddypress.org/support/topic/user-registration-issue-submit-brings-refreshed-page/
https://buddypress.org/support/topic/can-not-register-since-upgrade-to-1-2-1-it-just-refreshes-the-main-page/
http://premium.wpmudev.org/forums/topic/cant-register-new-bp-account-helpthe two possible workarounds i found didnt work with the latest release. This is clearly an issue many people are having with Buddypress and have been for a long time. it would be really helpful if the devs could work out what is causing it.
From my reading i’m suspicious that it is conflicts with junk left in the database by other plugins, which have since been deleted. but that’s not based on much actual understanding of the issue – and i wouldnt know how to repair this without deleting my site.
October 29, 2014 at 3:01 pm #227924In reply to: Registration page
@mercime
Participant@tobiasforsell The red button does link to the registration page. Congratulations on resolving the issue on your own π
October 26, 2014 at 2:33 pm #227732In reply to: New Users can't register
mohammad-mursaleen
ParticipantTry deactivating all plugins and then check if this issue still continues.
Explanation:
Mostly it happens if some plugin is interfering in registration process because the way BuddyPress registers a user is a bit different then what happens in WordPress by default for which usually plugins are designed.October 22, 2014 at 12:17 am #222354In reply to: Allowing new users to select WP role
Rune Kragh Rasmussen
ParticipantCan you please explain what you did to solve it. I desperately would like to know how to let members choose their user roles on registration.
I have created a new xprofile group called βUser Roleβ, with the following values (‘Editor’, ‘Contributor’, ‘Admin’ and ‘Subscriber’.
After this I pasted the following code into “bp-custom.php”:
function register_role($user_id) { $user_role = strtolower(xprofile_get_field_data('User Role', $user_id)); switch($user_role) { case "Editor": $new_role = 'editor'; break; case "Contributor": $new_role = 'contributor'; break; case "Admin": $new_role = 'admin'; break; case "Subscriber": $new_role = 'subscriber'; break; } wp_update_user(array( 'ID' => $user_id, 'role' => $new_role )); } add_action( 'user_register', 'register_role');
What more do i need to do to make it work?
October 21, 2014 at 3:02 pm #221400In reply to: BuddyPress won't take in new registers
DIYWWF
ParticipantAfter lots of searching I finally got round the problem of BP/WP not taking you to the registration page by adding the following file into wp-content/plugins/
bp-custom.php
<?php
/**
* Disables BuddyPress’ registration process and fallsback to WordPress’ one.
*/
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’;
}This dispenses with BP’s registration system and falls back to the standard WP registration.
October 20, 2014 at 3:26 pm #220262In reply to: I cannot change the text on the Registration Page
danbp
ParticipantMembers are the heart of BuddyPress. When a user register on a BP activated site, this user is automatically a “member”.
So i guess “they are not registering for the site, just the members area” is just impossible. Don’t know what you already did to get a “private” member area, but if you have an issue, it’s mostly because you did something wrong. π
To confirm to readers what you already get to work:
To modify the registration page, on which appears the login fields belonging to WP (user, username, email & password), BP adds his own additionnal fields, under condition you activated the xProfile component.
By default, BP add only one field in the mandatory field group “Base”: NAME.
When the admin add a new field, he can choose between different field status, and depending this status, you will see phrase such as “This field can be seen by: “.
These settings are avaible in Dashboard > Users > Profile Fields
October 20, 2014 at 2:05 pm #220260In reply to: I cannot change the text on the Registration Page
TAC28
ParticipantHi and thank you danbp,
I have read the documentation but not the codex yet.
I also had read that article on the modifying the registration page but I can’t see anything relating to changing the text on the live registration page. I don’t want it to say “Registering for this site is easy….” because they are not registering for the site, just the members area. I have changed the text in the register.php file but wherever I upload it to the changes do not show up.
It did help me find the setting in Profile Fields to change the βThis field can be seen by: Everyoneβ text to βThis field can be seen by: All Membersβ π
October 20, 2014 at 1:52 pm #220257In reply to: I cannot change the text on the Registration Page
danbp
Participanthi @tac28,
as you’re a first timer, i would suggest that you read attentively the Codex, and try to understand how BuddyPres works.
I am using a child theme based on Headway Base and have no need of a bp theme.
You can use any theme you want with BuddyPress.
Modifying the registration page is explained here.
xProfile fields settings is explained here.
October 19, 2014 at 10:17 pm #219649focallocal
Participantdid you mean you were able to register? the page loads fine for me but doesnt navigate to the homepage after registration, or create a new user.
October 19, 2014 at 3:40 pm #218865In reply to: Buddypress preventing registration
danbp
ParticipantIt’s probably because you’re using WP New User Approve which may not work with BuddyPress. See author comment and check the recent update changelog. BP problem seems not be solved yet.
Deactivate the plugin and give a try.Or consider perhaps this plugin.
October 19, 2014 at 2:50 pm #218862In reply to: BuddyPress won't take in new registers
aces
ParticipantWhat actually doesn’t work? What happens / doesn’t happen?
your case https://buddypress.org/support/topic/buddypress-preventing-registration/ is different…
October 19, 2014 at 2:09 pm #218861In reply to: BuddyPress won't take in new registers
bp-help
Participant@lolapentagrom
I would start troubleshooting by deactivating Buddypress multilingual 1.5 and WPML 3.1.7.2
and testing registration against each one as you reactivate them. I would venture to say one or both of these two plugins is likely causing your registration issue.October 19, 2014 at 8:09 am #218765In reply to: How to 'hide' group creation steps ?
danbp
Participanthi @ahd904,
behind your tech question, two things need some clarification at least.
First:
I just want to hide some of the group creation steps as these might make the users think too complicated to join the community.
Register process doesn’t include group creation, nore joigning a group, so i guess you are thinking about a problem that doesn’t exist at this stage.
If you allow your users to create groups, they have to follow the 3 creation steps, because it is intended so in BuddyPress. Thinking that this might be to complicated, implies that you think that your users are not able to do this. Mabe you’re right, but maybe not. Anyway in this case, simply deactivate group creation for users and create users groups yourself.
Assuming that you don’t think it’s too complicated for the user to click on “join group” ! πAs @bphelp said with reason, what your question implies needs some extra coding and much more as a simple snippet. You can do many things with BuddyPress, but not everithing or anything. π
Second:
Core simplification is a hard work (see Trac), so don’t expect that your goal could be reached easily, as BP will never be a “one click” tool. IMO this plugin is already very easy to use as is.That said, you could imagine your project differently and perhaps apply another strategy.
For example, the ability for users to join automatically a group at registration. 2 plugins can do that actually.- This one allows a new BuddyPress user to select groups to join during the registration process. You create the group, user choose his group.
- This one create a new Group when a new user sign up. But what will happen when you have 50 registration by day, spammers included ?
In both case, pros and cons have to be considered.
if you love the snippets and sweat on your site, here are two other options.
- Snippet: automatically add new user to a group
- Snippet: allow new user to be auto joined to groups you select from the admin (from core dev @imath). Explanation in french, coded in english – of course ! π )
October 18, 2014 at 7:56 pm #217880In reply to: BuddyPress & WPML
masaki06
ParticipantI have the same problem.
I use BP + Polylang plugin.
My registration url is “http://www.captionpost.com/en/register”.
My registraion page and member page is empty.
I think BP ignores Polylang’s language option.Anyone have good idea?
Thanks.
October 15, 2014 at 12:47 am #213727In reply to: Redirect after signup popup?
danbp
Participantensure first you setup correctly WP and BP before turning off something you can’t remember…
Deactivate all plugins and your theme and use Twenty thirteen to test the whole login process.You use event registration plugin. Maybe something goes wrong at this level or this plugin is not compatible with BP ?
Also, your charter page is not accessible (404), but the register page charter pop-up works.
October 13, 2014 at 10:28 pm #212370In reply to: [Resolved] Is the "Forum" tab a custom profile tab?
Halo Diehard
ParticipantThanks for your quick response, @danbp. I did not include the support information, because I just needed an answer to my simple question; didn’t think anyone would be able to help me with my actual issue, since I am using Simple Press and not bbPress.
Simple Press has a BuddyPress plugin, that integrates some of the functionality of their forums into the BuddyPress activity, and allows the forum owner to elect to use the BuddyPress profile, for example, over the SP one. But I am not seeing any forum posts in activity. I contacted them, but I also was not seeing the forum tab like I see here. I was here for a separate issue, and noticed that forum tab, so I opened this topic to ask about the tab.
Maybe that tab disappears if bbPress is not active, I’m not sure, but I really thought I remembered with the bbPress forums that my member’s posts were mixed in with all the other sitewide activity, and I don’t remember ever seeing a forum tab. I’m on my second BuddyPress supported theme; the first was Custom Community, and now I’m using Matheson.
I’m familiar with how to set up BuddyPress, but thanks for the links. Here is the rest of the info, in case it helps:
1. Which version of WordPress are you running? 4.0
2. Did you install WordPress as a directory or subdomain install? If this is either or, than it’s a directory install
3. If a directory install, is it in root or in a subdirectory? Again, not sure of the question. My url points to the root wordpress folder, but that folder is not in the root of my server, but a few folders in.
4. Did you upgrade from a previous version of WordPress? If so, from which version? Have had WordPress and upgraded every release for a couple of years
5. Was WordPress functioning properly before installing/upgrading BuddyPress (BP)? e.g. permalinks, creating a new post, commenting. Yes.
6. Which version of BP are you running? 2.1.1
7. Did you upgraded from a previous version of BP? If so, from which version? 2.1.0? I don’t know, the same: Have had BuddyPress for at least a year, upgrade it as releases come out.
8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones?
(Ones followed by asterisk are not active, since I’m not committed yet to Simple Press. Others I’m getting around to testing, or only use occasionally. Yes, I know it’s a lot.)
Add New Default Avatar
BadgeOS *
bbp buddypress profile information *
bbPress *
bbPress Enable TinyMCE Visual Tab *
bbPress Go To First Unread Post *
bbPress Stay Checked *
bbP Signature *
Black Studio TinyMCE Widget
BuddyPress
BuddyPress Groups Extras *
Content Aware Sidebars *
Email posts to subscribers *
Google Analytics by Yoast
iFlyChat
LenSlider *
Link Library
NextScripts: Social Networks Auto-Poster
Posts for Page Plugin
Quick Chat
Simple: Press
Simple: Press v5 Importer
Simple social share
SlideDeck 2 Lite *
Social Login
Stop Registration Spam
Subscribe/Connect/Follow
T(-) Countdown
ToTop Link
Ultimate Posts Widget *
Video Thumbnails
WangGuard
WordPress SEO
wp-Monalisa
WP Ads Within Contents *
WP Custom Login
WP Overview (lite)
WP Symposium Toolbar9. Are you using the standard BuddyPress themes or customized themes? I am using Matheson, a theme listed as working with BuddyPress, and it is further customized via css by myself.
10. Have you modified the core files in any way? No.
11. Do you have any custom functions in bp-custom.php? I don’t think I have that file.
12. If running bbPress, which version? Or did your BuddyPress install come with a copy of bbPress built-in? bbPress is deactivated, using Simple Press.
13. Please provide a list of any errors in your serverβs log files. I’ve searched to try and find these, and I have no idea how to find them.
14. Which company provides your hosting? 1and1
15. Is your server running Windows, or if Linux; Apache, nginx or something else? If this might be relevant, I will try to find out. Think it’s Linux.
October 9, 2014 at 9:16 am #207684In reply to: Profile fields for locations within a country
1a-spielwiese
ParticipantI had a look on your registration page where you have a few countries for members to select, but when I choose one, the same dropdown menu appears.
Yes, a better solution I do not have for the moment.
the only way I can see to do it is to add, UK, then a list of counties. USA and then a list of states, and so on which would mean I would have a list a mile high of all the different countries and local areas.
Yes – if you do not trust in the old plugins, which @noizeburger recommands:
https://buddypress.org/support/topic/resolved-different-profile-types-and-different-user-roles/ –
or trust in them, but find (like me) no way, to make them working as they should.
October 9, 2014 at 9:03 am #207682In reply to: Profile fields for locations within a country
Kris35
ParticipantHi @1a-spielwiese,
Thanks for this. I had a look on your registration page where you have a few countries for members to select, but when I choose one, the same dropdown menu appears. Im not using any plugin at the moment – just the extended profiles in the components of Buddypress at the top of the list which includes checkboxes for activity streams, friend connections etc. I don’t want to use a plugin that hasn’t been updated in two years either.
If I go to Users>Profile fields, this is where I was hoping to do this but the only way I can see to do it is to add, UK, then a list of counties. USA and then a list of states, and so on which would mean I would have a list a mile high of all the different countries and local areas.
Am I missing something?
Thanks a bunch,
Kris
October 8, 2014 at 9:22 pm #207115In reply to: Profile fields for locations within a country
1a-spielwiese
ParticipantA less elegant, but working solution regarding locations within states you can find on my registration page (section: ‘Profile Details – Teil III: Geographisches’):
http://1a-spielwiese.de/registrieren/
You can ask at first:
- In which state (USA or UK?) do you live?
- In which US-federal state respec. in which UK-county to you live?
- and finally you can introduce the names of the federal states of the USA with ‘US-‘ and the names of the counties of the United Kingdom with ‘UK-‘.
and then:
(You can ask this questions within the ‘base group’ of your xProfile fields – then they get displayed on your registration page automatically. Or you can make your further xProfile fields displayed on your registration page as well:
https://buddypress.org/support/topic/reshaping-the-registration-page/#post-203615 [section 2nd].)
-
AuthorSearch Results