Search Results for 'registration'
-
AuthorSearch Results
-
October 8, 2011 at 9:30 am #122749
In reply to: Removing unnecessary activity feed actions?
Tammie Lister
ModeratorPerhaps these links will help you:
http://blog.etiviti.com/2010/02/buddypress-hack-remove-new-member-registration-from-activity-stream/
http://simplercomputing.net/2010/04/19/buddypress-remove-friendship-notices/
*some of these may not be up to date though so back up before you test anything.
October 8, 2011 at 5:31 am #122720@mercime
Participant== NB My installation is on stand alone PC not connected to the internet. ==
1. Keep BP Template Pack plugin activated.
2. Open up bp-default theme and copy the folders listed below from bp-default theme into bp-twentyeleven folder
– activity, blogs, forums, groups, members, registrationOctober 8, 2011 at 1:32 am #122702In reply to: Not getting registration/activation email
aces
ParticipantIF wordpress isn’t sending any emails (ie they’re not in spam or junk folders) it may need an extra plugin – see https://codex.buddypress.org/troubleshooting/frequently-asked-questions/
Or try https://wordpress.org/extend/plugins/wp-mail-smtp/ to help diagnose where the issue is and add some extra settings to fix it…October 7, 2011 at 9:34 pm #122692In reply to: Move registration form to home page
gsarcher
MemberI just followed these steps, and the text and input boxes came perfectly. The form isn’t working, so I’ve got to figure out why. Suggestions?
October 7, 2011 at 6:31 pm #122674In reply to: Registration not working
geneghis
MemberI have looked for this since a long time. The problem comes from the plugin and widget mailpress. It’s terrible!
I always look at for widgets now, when I install something.October 7, 2011 at 3:51 am #122637In reply to: Registration woes
@mercime
ParticipantDeactivate BjuddyPress and other plugins. Check if your registration is working in WordPress first. If not, please find resolution at https://wordpress.org/support/
October 6, 2011 at 9:05 pm #122622In reply to: How to manage users & their extended profiles?
Brian Bowman
ParticipantI’ve added extended fields per buddypress’s capabilities; however, they don’t show up in my registration process….any idea why not and what I need to do about it:
Here is a completed profile where someone actually went back into their EDIT PROFILE and finished adding all the data: http://www.localjobs.com/blog/members/jimtait/profile/
Yet, even then – not all the REQUIRED fields are showing up on EDIT mode.
And here is the URL to register…and you can see that just a small bit of those initial fields actually during a new registration process – and my REQUIRED fields don’t show up either: http://www.localjobs.com/blog/register
Any ideas what I’m doing wrong? I’m asking this here because I’m getting zero responses after 3 weeks in the HOW-TO section having asked the same questions and this can’t be that hard to answer….
Much thanks.
October 6, 2011 at 8:07 pm #122619In reply to: Registration not working
skartar
MemberThanks for the reply karmatosed. I have just tried this. Changed from a custom structure (did BP do this?):
/blog/%year%/%monthnum%/%day%/%postname%/
to
Month and name, but it didn’t work. I’ve just had a thought – I followed the codex instructions here: https://codex.wordpress.org/Create_A_Network to add a subdirectory multisite 2 days ago, but changed back because it was not what was needed. I’ve replaced my original .htaccess and wp-config and dropped the multisite tables, but could this have caused this problem?October 6, 2011 at 6:31 pm #122611In reply to: Registration not working
Tammie Lister
ModeratorHave you tried resetting your permlinks? I’m just thinking something may have got stuck there and somehow that is impacting .. stab in dark but worth a shot.
October 5, 2011 at 3:56 pm #122503dubwarrior
MemberHi
how do you do this ‘.. do not have to place those pages in the menu they just need to be there.,its strange because the registration page did not show up in the menu which was great; but the activation always created a visible page in the menu. In order to correct this i made the activation page a parent page to the registration page so it would not be visible.
it works well but the problem is when register and create a site it show that the main admin site is linked to any new site that is created???
October 5, 2011 at 3:15 am #122478In reply to: Profile Fields show on email to admin?
saijin_nxtoyou
MemberI tried xprofile_get_field_data() but it didn’t work, maybe I’m just too dumb..
So I tried it using MySQL, here is my function wp_new_user_notification, I edit wp-includes/pluggable.php
function wp_new_user_notification($user_id, $plaintext_pass = ”) {
$user = new WP_User($user_id);$user_login = stripslashes($user->user_login);
$user_email = stripslashes($user->user_email);
$buddypress_fields = $user_id;// The blogname option is escaped with esc_html on the way into the database in sanitize_option
// we want to reverse this for the plain text arena of emails.
$blogname = wp_specialchars_decode(get_option(‘blogname’), ENT_QUOTES);$message = sprintf(__(‘New user registration on your site %s:’), $blogname) . “rnrn”;
$message .= sprintf(__(‘Username: %s’), $user_login) . “rnrn”;
$message .= sprintf(__(‘E-mail: %s’), $user_email) . “rnrn”;// Add Custom Fields from buddypress table to admin email – Start
$buddypress_result_ = mysql_query(“SELECT
wp_bp_xprofile_fields.name,
wp_bp_xprofile_data.value
FROM wp_bp_xprofile_fields, wp_bp_xprofile_data
WHERE
wp_bp_xprofile_data.user_id = $user_id
AND
wp_bp_xprofile_fields.id = wp_bp_xprofile_data.field_id
ORDER BY
wp_bp_xprofile_data.field_id”);while($buddypress_row = mysql_fetch_array($buddypress_result_))
{
$fields = $buddypress_row;
$fields_value = $buddypress_row;
$message .= $fields . “: rn”;
$message .= $fields_value . “rnrn”;
}// Add Custom Fields from buddypress table to admin email – End
@wp_mail(get_option(‘admin_email’), sprintf(__(‘[%s] New User Registration’), $blogname), $message);
if ( empty($plaintext_pass) )
return;$message = sprintf(__(‘Username: %s’), $user_login) . “rn”;
$message .= sprintf(__(‘Password: %s’), $plaintext_pass) . “rn”;
$message .= wp_login_url() . “rn”;wp_mail($user_email, sprintf(__(‘[%s] Your username and password’), $blogname), $message);
}
October 4, 2011 at 4:39 pm #122390Anthony
MemberHi, This sounds like a real head scratcher, but I found some things you could get started with, http://devthought.com/2008/01/12/textboxlist-meets-autocompletion/ and http://www.brandspankingnew.net/specials/ajax_autosuggest/ajax_autosuggest_autocomplete.html I found them at http://www.noupe.com/tools/100-essential-web-development-tools.html Maybe writing a plugin that applies them to a text field in the BuddyPress custom fields. Thanks for asking for my help
October 3, 2011 at 10:28 pm #122147In reply to: Internal Configuration Settings
Paul Wong-Gibbs
KeymasterYou don’t need to do that any more. Just change the slug of the page mapped to registration (wp-admin BuddyPress > Pages).
October 3, 2011 at 8:12 pm #122137In reply to: User registration is currently not allowed
drmikelbrown
MemberOctober 3, 2011 at 8:06 pm #122134In reply to: User registration is currently not allowed
Paul Wong-Gibbs
KeymasterYou’re running multisite. If you want your users to be able to register their own sites (think like how WordPress.com works), then pick both sites and users. If you just want to allow new user account, just pick users
October 3, 2011 at 7:56 pm #122133In reply to: User registration is currently not allowed
drmikelbrown
Member@ Paul
Thank you. I actually saw the setting under the network admin > settings > network settings > Registration Settings. Now my question is which setting should I check? I am thinking since my site is a new site with no one on it expect me that I could select “Both sites and user accounts can be registered” or should i select “User accounts may be registered.” I guess my real question is what is the difference between the various selections?
Thanks
SWOctober 3, 2011 at 7:24 pm #122126In reply to: User registration is currently not allowed
Paul Wong-Gibbs
KeymasterYou shouldn’t need to apply any patch. In your dashboard, go to Settings > General, and tick “Allow anyone to register”
October 1, 2011 at 8:56 pm #121804Paul Wong-Gibbs
KeymasterPlease create a new thread – this one is over a year old, and you’re best off asking a question in a new topic.
October 1, 2011 at 7:57 pm #121802landwire
Participant@t.sjogren
does this work?September 30, 2011 at 8:29 pm #121614In reply to: Admin bar not working
@mercime
ParticipantDid you try deactivating BP Registration Options plugin and see if the BP adminbar aka buddybar shows up?
September 30, 2011 at 8:29 pm #121714In reply to: Admin bar not working
@mercime
ParticipantDid you try deactivating BP Registration Options plugin and see if the BP adminbar aka buddybar shows up?
September 30, 2011 at 1:08 am #121516Sketaful
MemberHave you gone thrue the setup of Buddypress (its in on the panel somewhere.
) and switched theme to a buddypress compatible one?
September 28, 2011 at 6:38 pm #121384igeekout
Memberwhy not use recaptha for registration?
September 28, 2011 at 6:37 pm #121383kkradel
ParticipantI’ve decided to manually register users as they sign up. It is the kludgiest of solutions, but I’d rather spend my time registering good folks that hours seeking out and deleting bad.
September 28, 2011 at 6:00 pm #121379In reply to: Registration for new members, signing in, module.
Paul Wong-Gibbs
KeymasterThis *is* BuddyPress. Have a play and learn at http://testbp.org/
-
AuthorSearch Results