Search Results for 'registration'
-
AuthorSearch Results
-
March 6, 2011 at 4:20 am #106953
In reply to: Need help on registration
kanowah
Participantand if i add it to another theme i use on blog it redirect to example/register
March 6, 2011 at 4:20 am #106952In reply to: Need help on registration
kanowah
Participantnot working now all blog is redirect to example.com/wp-signup
March 6, 2011 at 4:13 am #106951In reply to: Need help on registration
r-a-y
KeymasterIn your secondary blog theme’s functions.php, try adding this:
`remove_action( ‘wp’, ‘bp_core_wpsignup_redirect’ );`
March 6, 2011 at 4:09 am #106948In reply to: Need help on registration
kanowah
Participantis there any code or i need to modified my theme function…. thank for try to help me
March 6, 2011 at 4:08 am #106947In reply to: Need help on registration
kanowah
Participantexample myblog.example.com/wp-login.php?action=register i want it to work not to redrect to example.com/register
March 6, 2011 at 4:07 am #106946In reply to: Need help on registration
kanowah
Participanti don’t wnt to have buddypress registration on the other blog i want to have wordpress registration
March 6, 2011 at 4:05 am #106944In reply to: Need help on registration
r-a-y
KeymasterIf your other blog’s theme has its own registration templates, you could try:
myblog.example.com/registerBy “own registration templates”, I mean you’d have to copy /plugins/buddypress/bp-themes/registration/ to your current blog theme’s folder.
March 6, 2011 at 3:51 am #106942In reply to: Need help on registration
kanowah
Participantmy site is http://facemet.tk/
March 5, 2011 at 6:14 pm #106908In reply to: wp-signup /register
kanowah
Participantand one more thing… Is it posible that all blog get there own registration page. for example:- myblog.example.com/wp-login.php?action=register
March 5, 2011 at 4:34 pm #106902In reply to: [Resolved] Disable Blog signup?
Brajesh Singh
ParticipantEasy way, On wpms 3.0.x
Disable the blog signup from SuperAdmin->Options ->Registration Settings
and select the second option (User account may be created). If you are on the wpms 3.1, you will have to go to NetworkAdmin->settings->Registration Settings and do the same.On your users request, you can still create an account as you are the site admin.
March 5, 2011 at 3:32 pm #106895In reply to: wp-signup /register
kanowah
Participanti want the default wp-registration
March 5, 2011 at 3:15 pm #106891In reply to: wp-signup /register
Virtuali
ParticipantDo you want just the permalink to be changed, or do you want the default wp registration?
March 5, 2011 at 6:53 am #106876ewebber
Participant@jakel I did ask the developer about being able to fill in the registration form, but his response was “only autoregistration is supported. It’s on my to-do list for eventual implementation, no time estimate yet though.”
I’m sure it’s possible, although I know I don’t have the skills to do it.
@r-a-y in response to your edit, currently when a new user is added with the fb plugin they don’t appear as a new user in the activity stream, would this also be solved by using bp_core_activated_user ?
March 4, 2011 at 7:42 pm #106827Avi M
ParticipantThere are bunch of ways to make this happen but here is what I use.
https://wordpress.org/extend/plugins/bp-registration-options/
Oddly enough imo the plugin authors don’t really showcase the privacy feautre which I think is one of the plugins best quallities.
Here a creen shot of the privacy settings page is it appers on my install.
http://preview.tinyurl.com/4gybrxp
very bassic but it really does the trick if you are trying to limit access to member profile pages.
Hope this helps!
March 4, 2011 at 7:04 pm #106824jakeL
MemberI am definitely interested in this too. Taking it a step further, it would be nice to make users complete a full profile for the site after logging in through Facebook. Right now the WP-FB-autoconnect works great, creates the user and logs them in – but then it brings them back to the homepage without filling out the rest of their profile.
When you create an account in BP without logging in through facebook, the BP registration page asks users to complete all the required and optional fields in the profile – but I haven’t found a way to do this with Facebook, it just gives them a user name and logs them in. So I think what would need to happen is that after the facebook connect, the registration process isn’t complete – it points them back to the BP registration page (or something like it) where they can finish entering other required and optional fields.
Any ideas on how this might work?
A workaround might be that on the *first* login only, the user is redirected to the edit profile page, and on subsequent logins they’re redirected to the homepage and logged in normally.
March 4, 2011 at 3:42 am #106782In reply to: How to avoid spam registration?
matthewalan
MemberOkay, what are some examples of software for that?
March 4, 2011 at 12:59 am #106770In reply to: How to avoid spam registration?
Virtuali
ParticipantYou must search for anti-spam plugins that filter out spam activity that the users make.
If the “spammers” are going past the captcha, that means they are not robots, actually people, just spamming your site.
So keep the captcha for robots, and you will need to search for anti-spam software to filter out the spam content posted on your site.
March 3, 2011 at 8:52 pm #106753Morgue89
MemberDo you put the capatcha only on the registration area or on other parts of your site as well?
March 3, 2011 at 7:23 pm #106740r-a-y
KeymasterMarch 3, 2011 at 12:59 pm #106714ftrenkam
MemberHad the same problem on a fresh BP 1.2.8 install on a fresh WP 3.1. Changed theme to bp default, changed permalink settings, made sure .htaccess contained rewrite rules as generated by BP. mod_rewrite was definitely activated. However, the .htaccess in the BP root (a subdirectory under a local domain) was not evaluated at all. Ubuntu 10.04 server edition, everything installed via packet management except for WP/BP which were simply unzipped from the download archives.
This entry in httpd.conf helped:
~~
`
Options FollowSymLinks
AllowOverride FileInfo Options
Allow from all
`
~~After that all the links on tabs, registration etc. worked fine.
March 3, 2011 at 12:41 pm #106713In reply to: 404 error page on most buddypress links
ftrenkam
MemberHad the same problem on a fresh BP 1.2.8 install on a fresh WP 3.1. Changed theme to bp default, changed permalink settings, made sure .htaccess contained rewrite rules as generated by BP. mod_rewrite was definitely activated. However, the .htaccess in the BP root (a subdirectory under a local domain) was not evaluated at all. Ubuntu 10.04 server edition, everything installed via packet management except for WP/BP which were simply unzipped from the download archives.
This entry in httpd.conf helped:
~~
`
Options FollowSymLinks
AllowOverride FileInfo Options
Allow from all
`
~~Change the root dir of bp accordingly. After that all the links on tabs, registration etc. worked fine.
March 3, 2011 at 12:36 pm #106711In reply to: 404 Page not found
ftrenkam
MemberHad the same problem on a fresh BP 1.2.8 install on a fresh WP 3.1. Changed theme to bp default, changed permalink settings, made sure .htaccess contained rewrite rules as generated by BP. mod_rewrite was definitely activated. However, the .htaccess in the BP root (a subdirectory under a local domain) was not evaluated at all. Ubuntu 10.04 server edition, everything installed via packet management except for WP/BP which were simply unzipped from the download archives.
This entry in httpd.conf helped:
~~
`
Options FollowSymLinks
AllowOverride FileInfo Options
Allow from all
`
~~Change the root dir of bp accordingly. After that all the links on tabs, registration etc. worked fine.
March 3, 2011 at 10:37 am #106708In reply to: How to stop spam registration?
Jose Conti
ParticipantHi,
Test this plugin: https://buddypress.org/community/groups/wangguard/
March 3, 2011 at 2:57 am #106698In reply to: New user Registration Problem — NO Confirmation Mail
CIX
ParticipantOK, so like everyone else through forum after forum I also had the problem of new users not getting a confirmation email. My problem was Bluehost. WordPress apparently sends those emails from an email address called “wordpress@yourdomain.com”. Bluehost has a problem with this as might other hosts. The solution is a plug-in https://wordpress.org/extend/plugins/mail-from/ install it and allow it to make your email “noreply@yourdomain.com”. It worked and was easy.
March 3, 2011 at 12:37 am #106691In reply to: User registration activation keys not working
ronanward
MemberHi
I’m having the same problem. Did you get it sorted?
-
AuthorSearch Results