Search Results for 'registration'
-
AuthorSearch Results
-
March 2, 2011 at 8:15 am #106657
thiruarasu
MemberI am using wordpress 3.0. I have enabled the user to register by using superadmin=> options=> Registration Settings=>
Allow new registrations=> User accounts may be registered. But still I could not get the functionality of buddypress. I have used directory structure for multisite. Is this prevent the activity of buddypress? Is there any other configuration setting?March 2, 2011 at 7:56 am #106655In reply to: Setting up registration with buddypress and s2member
lolabytoja
MemberHello There, so im new to BuddyPress…Trying to set up a site and what i am finding is with this S2member/Buddypress Collaboration. Basically when i go on my site which i have set up and try to register as a general “subscriber or something it tells me an activation email has been sent but i never actually receive one.
I have tried on multiple accounts but i am having no luck whatsoever. Any ideas?
Thanks
March 2, 2011 at 5:56 am #106654Paul Wong-Gibbs
KeymasterYou will need to configure WordPress to allow user registrations.
To install the forums, after you’ve activated BuddyPress, go to the Network dashboard (I am assuming you are on WordPress 3.1), go to the “BuddyPress” menu item and then “Forum Setup.”March 1, 2011 at 10:56 am #106571In reply to: Forum is not applied correctly
@mercime
ParticipantAt the end of the BP template pack process, per instruction on screen, you need to add (hardcode) new navigation tabs or links to your theme’s header.php to link to BuddyPress components directory pages.
Add link to the components you enabled in BuddyPress settings. The default set of links are:
* Activity: http://yoursite.com/activity/
* Members: http://yoursite.com/members/
* Groups: http://yoursite.com/groups/
* Forums: http://yoursite.com/forums/
* Register: http://yoursite.com/register/ (registration must be enabled)
* Blogs: http://yoursite.com/blogs/March 1, 2011 at 7:31 am #106564In reply to: Add an ‘Agree to T&C’s tick box to log in form
PJ
Participanthttps://buddypress.org/community/groups/bp-xtra-signup/ may work
However, another option would be to add a line of code that asserts that if a user proceeds in creating an account, they agree to your Ts and Cs. Find `registration/register.php` and add text to line 198. Surround your Ts and Cs url with a link for users to view it before proceeding. That way any members on your site will have read/agreed to them.
http://www.htmlcodetutorial.com/linking/_A_TARGET_95y98y108y97y110y107y.htmlFebruary 27, 2011 at 11:50 pm #106478In reply to: move registration to index page
austinfav
MemberCould you post what you did? I would like to do the same
February 26, 2011 at 11:09 am #106358In reply to: Problem with registration after Upgrade to 3.1
Paul Wong-Gibbs
KeymasterI wonder if this is something as a result of a change in WP 3.1.
ping @andrea_r
February 26, 2011 at 6:07 am #106348In reply to: Problem with registration after Upgrade to 3.1
ri-kun
ParticipantI guess I have to add screenshot for you guys to understand my problem.
February 25, 2011 at 1:30 pm #106261In reply to: Problem with registration after Upgrade to 3.1
ri-kun
ParticipantI guess my question is not that understandable since no one replied so Im gonna rephrase it.
I have 2 sites and I dont know what happen but when people register in the site it doesnt included in the mainsite like it used to. I tried registering myself and it get me registered in the Network but not in the 1 site/ main site which I want all registration will be stored. Is anyone experiencing the same thing? How can I fix this?
February 25, 2011 at 1:29 pm #106260In reply to: WordPress 3.1
ri-kun
ParticipantI also have some issues with the new version too! I have 2 sites and I dont know what happen but when people register in the site it doesnt included in the mainsite like it used to. I tried registering myself and it get me registered in the Network but not in the 1 site/ main site which I want all registration will be stored. Is anyone experiencing the same thing? How can I fix this?
February 25, 2011 at 3:52 am #106231In reply to: Disabling BuddyPress Registration?
Virtuali
Participantput in bp-custom.php:
`remove_action( ‘wp’, ‘bp_core_screen_signup’, 3 );`
February 24, 2011 at 5:05 am #106117In reply to: Registration link redirects to home page
aomega
MemberI had the same problem. I resolved this by
1. Select Settings>General – Membership – Select “Anyone can register”
2. Select Settings>Discussion Settings>Other comment settings – Select “Users must be registered and logged in to comment”
3. Log out of administrator identity
4. Clear browser cache
5. Reload http://www.yoursite.com/register pageVoila…hope it works for you others…
February 24, 2011 at 12:58 am #106101duelingpianoschool
MemberI am using buddypress with wp-member. It works, except buddypress lets you input a password upon registration, but wp-member generates a pw. Anyone know how to fix this? I’d like to make it so my clients can log in with the pw buddypress allows them to choose rather than check their email. Or can I remove the pw option from buddypress?
February 23, 2011 at 3:36 pm #106039In reply to: WP-minify and new version of Buddypress
xyclops
MemberHere is a way I have found to make avatar uploads work while still using a CDN. I’m using S3/Cloudfront but it shouldn’t make a difference.
The avatars, once accepted have a filename that always ends in either ‘bpfull.jpg’ or ‘bpthumb.jpg’
When an avatar is being dealt with by the upload/cropping process, the images used are not given these names.
If uploaded at registration time they are stored in an avatars/signups/ folder
If uploaded once a user is a registered member, they will always have the file size at the end of the filename (e.g. 200×200.jpg)
Using this info, I did the following:
in my custom file list, I added the following:
`wp-content/uploads/avatars/*bpfull.*
wp-content/uploads/avatars/*bpthumb.*`in my rejected files list, I added the following:
`/wp-content/uploads/avatars/signups/*
/wp-content/uploads/avatars/*/*x*.*`I’m not too happy with the rules for rejection, it seems like there might be a danger of having a file named xxxbpfull.jpg being rejected and sourced locally, but given that any files that don’t contain an x will be sourced from my CDN I am pretty happy with this level of fudgery. In any case, this does mean that the files required to process the cropping will be sourced locally and therefore avatar uploads will work.
The last thing to do is to set the autoupload time to something reasonable – I have set it to 10 minutes at the moment mainly so I can check that this all works okay, and also to see how much the autoupload script hammers the server. If it were possible it would be nice to add a hook at the end of the avatar cropping function that calls an image upload to the CDN for the file that has been created, but waiting 10 minutes to an hour for an avatar is not so bad.
Hopefully this is helpful, and if anybody has better rules for the rejected file list I would be super happy to see them.
February 23, 2011 at 12:47 am #106007In reply to: Am I Breaking Something? Is There An Easier Way?
ssmith2
MemberJust started up Buddypress and Easy Albums. All ok except for no ability for a visitor / friend to ’register’, ’create account’ or ’sign up’ in the Members fields.
I have icons of Newest – Active and Popular but nothing for visitors to register and create profile. Currently I am the only one listed on site as a member with ability to create / edit my profile. Am I missing something obvious?
Can someone tell me where to start at getting a registration Sign up function operating?February 22, 2011 at 11:56 pm #106000In reply to: Am I Breaking Something? Is There An Easier Way?
Luca Foss
Memberright…but I wanted to create a registration page that has the register fields regardless of login…
February 22, 2011 at 8:41 pm #105993In reply to: Am I Breaking Something? Is There An Easier Way?
Andrea Rennick
Participant“I saw that when I just used “/registration”, the page didn’t show when i was signed in “
because if you are signed in, they you are already registered and there’s no need to RE-register.
February 22, 2011 at 5:31 pm #105980In reply to: Am I Breaking Something? Is There An Easier Way?
Luca Foss
Member“Why not just edit the files in /registration?”
Thanks for your response. I want to create a “signup” page that appears regardless of whether the user is signed in or not. I saw that when I just used “/registration”, the page didn’t show when i was signed in (correct me if I’m wrong here…because maybe it was something it did wrong).
February 22, 2011 at 5:04 pm #105977In reply to: Am I Breaking Something? Is There An Easier Way?
modemlooper
ModeratorWhy are you copying the registration to a different page? Why not just edit the files in /registration? Better, what are you trying to accomplish?
February 21, 2011 at 4:32 pm #105910In reply to: How to make a private community?
ABomb1977
MemberI absolutely adore this code you’ve posted. It’s clean and easy to install, and there’s no extraneous junk that needs to be done. A simple copy/paste does the trick amazingly well for me.
But here’s a question:
I know that
`if( bp_is_register_page() || bp_is_activation_page() )’
is where I add slugs that make particular pages available to the public.I’m also using the bp-xtra-signup, which I think you contributed to. On my registration page, there’s a checkbox to check that says one agrees to the site TOS, but one has to open a link to see the TOS. When that link is clicked, it redirects to the front page of the site that logged out users are redirected to.
I’m wondering two things: (1) I haven’t made a TOS page, so where is it? Does one come with that plugin? (Cause I have yet to find it. LOL) and (2) Where do I get that slug to add to the visible pages code line?
Thanks!
ABombFebruary 16, 2011 at 10:56 pm #105579Danstinebaugh
ParticipantAlso I’ve used the default theme and to edit the (required) to something more like (required, but fake is fine) is in the `/wp-content/plugins/buddypress/bp-themes/bp-default/registration/register.php` file.
Again thanks Sofian and pcwriter! Made my day!
February 16, 2011 at 8:31 pm #105565aces
ParticipantHave you logged out?
If you click on that link (your no. 2) it will send you to homepage if logged in….February 16, 2011 at 7:53 pm #105562Hugo Ashmore
ParticipantAnd you have installed the Suffusion BP template pack plugin and gone through that process, checked permalink settings, or at least revisted the permalink page to force a refresh; any other issues with links?
February 16, 2011 at 6:58 pm #105557mariamar
MemberHi, everyone,
I have similar problems with registration
1. .I can’t see my registration page anywhere.
2. When I use the http://mariamar.com/register URL, it just sends me back to the homepage.
3. I also don’t know how to place a registration link or box so visitors can register.I see that the consistent answer here is Settings/ General.
I’ve done that. Still the problem is not solved.
INFO
I’m using WordPress 3.03 (or 4? Anyways, the one previous to 3.05) I installed BP and then used the available links to make it work with my theme, suffusion, which is the theme I use in all our blogs, as is the best one around for creating flexible widgets and highly customized design, so I don’t want to change it. I don’t know if this affects the situation. Just thought to mention this.
PLEASE HELP!
Well, I’m stuck. Have looked everywhere for a solution. I would appreciate some quick response from the very nice fellows in this forum.Thanks,
MMFebruary 16, 2011 at 4:43 pm #105544abaden22
MemberThanks rossagrant. This helped me too!
-
AuthorSearch Results