Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'notification user id'

Viewing 25 results - 951 through 975 (of 1,091 total)
  • Author
    Search Results
  • #73453
    3sixty
    Participant

    This is now officially a “Potential Future BuddyPress Feature” for BP 1.4+ (ie, after BP 1.3, which looks to be essentially the WP 3.0 compatibility release). Here is the short list:

    A quick blog post form via the theme. (try plugin: BuddyPress QuickPress)

    Privacy controls (try plugin: bp-authz)

    Global content tagging

    Inappropriate content flagging

    Bulk accept/reject friendship requests

    Grouping of similar activity stream items

    Ability to block all communication from a user

    Option to receive forum post notifications via email

    Message file attachments

    Structured profile fields (templates for address / phone number)

    Profile field specific searching (try plugin: BP Member Filter)

    AJAX live updating of site wide activity stream

    #73237
    r-a-y
    Keymaster

    Hey Erich,

    That plugin you listed is considered “deprecated” by Boone.

    He’s now working with David on the Group Activity Stream subscription plugin.

    #10509
    techguy
    Participant

    In the beloved wp-fb-autoconnect plugin that allows users to login to BP using Facebook, I think I found an error in how it creates a user. I believe it’s using the WP user creation and misses some of the BP user creation. Hopefully, Andy or someone can tell me if my assumption is correct.

    Here’s what the wp-fb-autoconnect plugin uses to create a new user:

    $user_login_id = wp_insert_user($user_data);

    wp_new_user_notification($user_login_name);

    //Tag the user with our meta so we can recognize them next time, without resorting to email hashes

    update_usermeta($user_login_id, $jfb_uid_meta_name, $fb_uid);

    In another plugin I saw these actions for user creation, but I couldn’t tell if they just built on other BP core items or were the actual actions that needed to be called.

    add_action(“user_register”);

    add_action(“bp_core_signup_user”);

    I also found this one for creating a wpmu user:

    wpmucreateuser()

    I also checked the documentation and thought it should be in this link, but it wasn’t:

    http://codex.buddypress.org/developer-docs/action-reference/

    I imagine somewhere in the core is a list of the functions that create a new user, but I’m hoping someone might know which actions need to be called by a plugin to create a BP user properly.

    Boone Gorges
    Keymaster

    crashutah – Thanks a million for the feedback. The Facebook language is really helpful. I think I should be able to add an opt-out feature with only a little work.

    As for your other excellent suggestions:

    – Definitely agree about customizing the subject. My plan was to make it customizable by the site admin, but not by the end user – but on second thought it would be easy enough to put a toggle on the back end that lets the site admin decide whether users can personalize the subject line

    – The Reply To idea is very good. I’m using wp_mail, WP’s built in mail function, which in theory should allow me to feed in some headers. I will give it a try – but no promises on this one, as I’ve had trouble making the WP default reply-to address work correctly in the past and don’t feel like tearing any more hair out over it :)

    – Something must have gotten screwed up in your apostrophe comment. Do you mean that a slash showed up? I suppose that makes sense. I will have a look at stripping those slashes.

    – Great, great idea about autopopulating email field. I will take care of it right away.

    – Your point about auto-adding/auto-friending is well-taken. I kind of feel the same way. I think I might make it an admin option: send group/friend invites, or just do the adding. I can see arguments both ways (you give a good case for auto-adding, but you might also think that it’s nice to get some notifications first thing when you log in…) so I think it might be best left as an option for the administrator.

    Again, I really appreciate the detailed feedback.

    #71152
    jlindo
    Member

    I am also very interested i this functionality. The ideal for me would be a sidebar widget with something like “suggested friends” or “people with similar interests” that lists a few links to people who’s profile info is similar. A weekly email notification of these people’s profiles would also be fantastic.

    This has same great implications because it encourages users to interact with people they don’t know and they are (might be?) more likely to do so because of their self-described similarities.

    Liesl Fawcett
    Participant

    I looked for a plugin that did this as well as posts on here but didn’t find anything. I’m hoping to find a way to display links under ‘Notifications’ on the top admin bar when someone replies to an “update” you posted on either your profile or on a group. Users get email notifications (if they choose to in their settings) when someone replies but I’ve been told tons of times that it would be more effective to have this show up on the ‘Notifications’ section on top just like friend requests and messages. Is there a way to do this?

    #70831
    dre1080
    Member

    for the whats new text u can try,

    <?php if (is_user_logged_in() ) { //only logged in user can view this ?>

    //place content here

    <?php } ?>

    u can use that to show something only to logged in users and:

    <?php if (!is_user_logged_in() ) { //only non-logged in user can view this ?>

    //place content here

    <?php } ?>

    to show something only to users who are not logged in

    if u are using a text widget try use the widget logic plugin also

    #70830
    dre1080
    Member

    why not use the bp-notifications widget plugin and create a widget area where you would like in your template..

    check your code for the login form because iv tried this and it goes once a user is logged in..

    try this:

    <?php if (!is_user_logged_in() ) { //only non-logged in user can view this ?>

    <form name=”login-form” id=”login-form” class=”standard-form” action=”<?php echo site_url( ‘wp-login.php’, ‘login’ ) ?>” method=”post”>

    <div style=”font-weight:bold; margin-left: 20px; margin-bottom: 10px;”><label>

    <input type=”text” name=”log” id=”userbar_user_login” class=”input” value=”<?php echo attribute_escape(stripslashes($user_login)); ?>” /></label></div>

    <label><?php _e( ‘Password’, ‘buddypress’ ) ?>

    <input type=”password” name=”pwd” id=”userbar_user_pass” class=”input” value=”” /></label>

    <p class=”forgetmenot”><label ><input name=”rememberme” type=”checkbox” id=”userbar_rememberme” value=”forever” /> <?php _e( ‘Remember Me’, ‘buddypress’ ) ?></label></p>

    <input type=”submit” title=”Login” name=”wp-submit” id=”userbar_wp-submit” value=”<?php _e(‘Login’); ?>” tabindex=”100″ />

    <input type=”hidden” name=”redirect_to” value=”<?php bp_root_domain() ?>” />

    <input type=”hidden” name=”testcookie” value=”1″ />

    </form>

    <?php } ?>

    #70457
    Mike Pratt
    Participant

    @LwEEs

    You can also place this code anywhere you want and style your own little Notifications Block:

    <!-- Notifications block -->
    <?php
    echo '<li id="notifications-menu"><span id="menu-title">
    <a href="' . $bp->loggedin_user->domain . '">';
    _e( 'Notifications', 'buddypress' );

    if ( $notifications = bp_core_get_notifications_for_user( $bp->loggedin_user->id ) ) { ?>
    <span><?php echo '('.count($notifications).')' ?></span>
    <?php
    }
    echo '</a></span>';
    echo '<ul>';

    if ( $notifications ) { ?>
    <?php $counter = 0; ?>
    <?php for ( $i = 0; $i < count($notifications); $i++ ) { ?>
    <?php $alt = ( 0 == $counter % 2 ) ? ' class="alt"' : ''; ?>
    <li<?php echo $alt ?>><?php echo $notifications[$i] ?></li>
    <?php $counter++; ?>
    <?php } ?>
    <?php } else { ?>
    <li><a href="<?php echo $bp->loggedin_user->domain ?>">
    <?php _e( 'No new notifications.', 'buddypress' ); ?></a></li>
    <?php
    }
    echo '</ul>';
    echo '</li>';
    ?>

    #10144
    LwEEs
    Participant

    Hey guys, I’m currently murdering a version of the theme unplugged for buddypress, personally I like what I’m seeing, you be the judge, lwees.com. I have removed the navigation bar that appears on top of the site (I know I should know th damn name by now), but I would like to keep the notifications feature somewhere else.

    I know how to play with the coding to get it done but I would like ideas about where to do this, I was planning to do it in the sidebar just bellow the avatar of a logged in user but I’m unsure if that will break any functionality. Any ideas are extremely welcome.

    I’m using the latest of everything, WordPress MU, BuddyPress, and Latest Plugins. Thanks, Bye.

    #10141
    Andy Peatling
    Keymaster

    Based on this topic.

    Plugin Authors — If your plugin does not appear in the “Confirmed Update Friendly” PLEASE UPDATE IT ASAP. It’s really important as your plugins are crashing/have the potential to crash user’s WordPress installations when BuddyPress is updated. This reflects poorly on the project, even though BP is not the problem.

    This will take you less than 5 minutes to do if you create a loader.php file and add the code in the link below, then just include your existing main plugin file when BuddyPress has loaded.

    http://codex.buddypress.org/how-to-guides/checking-buddypress-is-active/

    Not Update Friendly (crashes site):

    Any plugins in this list that have not been updated for 1.2 will be removed from http://buddypress.org/extend/plugins/.

    • BuddyPress Events Calendar
    • bpPicture Album
    • BuddyPress AJAX Chat
    • BP-TagBox
    • Twire / Twitter to Wire
    • Auto Group Join
    • Achievements
    • BuddyPress Stats
    • CD BuddyBar Logo Changer ( is_site_admin() doesn’t exist in WP 2.9.2 before bp_init – should be current_user_can(‘install_plugins’) )
    • Remove Avatars ( is_site_admin() doesn’t exist in WP 2.9.2 before bp_init – should be current_user_can(‘install_plugins’) )
    • BP Translate ( is_site_admin() doesn’t exist in WP 2.9.2 before bp_init – should be current_user_can(‘install_plugins’) )

    Potentially Not Update Friendly (does not crash site but needs updating):

    Plugins that don’t crash but do not check if BuddyPress is active:

    • BP Group Documents
    • BuddyPress Group Tags
    • BuddyPress Rate Forum Posts
    • BuddyPress Multilingual
    • BuddyPress Profile Widget for Blogs
    • TDLC Birthdays
    • Jet Random Members Widget
    • Jet Random Groups Widget
    • BuddyPress Admin Bar Mods
    • BP Announce Group
    • BP Redirect to Profile
    • BuddyPress Real Names
    • Buddypress Pages to Navigation
    • BP Tiny MCE
    • Inbox Widget
    • BP Paginated Posts
    • BP Registration Options
    • BuddyPress Friends On-line (FOL)
    • Remove BuddyPress AdminBar
    • Invite Friends

    Plugins that use an old method of BP detection and need updating to use bp_init loader method:

    • BuddyPress Maps
    • BuddyPress Group Blog
    • BuddyPress My Friends Widgets
    • BuddyPress Widget Pack
    • BuddyPress-Kaltura Media Component)
    • BuddyPress Group Email Subscription
    • BuddyPress Classifieds
    • BuddyPress Quick Press
    • BuddyPress Group Wiki
    • BuddyPress Sitewide Featured Posts
    • BuddyPress Group Activity Notifications ( Error in live version: First argument is expected to be a valid callback, ‘ass_init’ )

    Confirmed Update Friendly (high-fives!):

    • Tweetstream
    • Facestream
    • BP Group Management
    • BP Groupblog
    • BP Expand Activity
    • Invite Anyone
    • BuddyPress Forums Extras (all)
    • BuddyPress Like
    • oEmbed for BuddyPress
    • Forum attachments for BuddyPress
    • BP Profile Privacy
    • BP Notification Widget
    • BP Import Blog Activity
    • Custom Profile Filters for BuddyPress
    • BP Include non Member Comments
    • BP MPO Activity Filter
    • BuddyPress Links
    • BuddyPress Group Twitter
    • BuddyPress External Group Blogs
    • BP Random Members Widget
    • BuddyPress Template Pack
    • Group Forum Subscription for BuddyPress
    • Enhanced BuddyPress Widgets
    • BuddyPress Album+
    • BuddyPress Geo
    • BP Member Filter (but should move all BP specific code to separate file to be safe)
    • BP Member Map (but should move all BP specific code to separate file to be safe)
    • BuddyPress Restrict Group Creation (but should move all BP specific code to separate file to be safe)
    • BuddyPress Sitemap Generator (but should move all BP specific code to separate file to be safe)
    • Welcome Pack

    Please post a followup message if you have updated your plugin, or if you find any other plugins that crash.

    Checking your BuddyPress plugins

    Deactivate all of your plugins. Individually activate a single BuddyPress plugin. If it activates and you do not get a white screen or white screen with error message, then the plugin is update friendly. Otherwise please post it in this thread to add to the hall of shame! :) If you get a white screen then to fix this remove the plugin folder from wp-content/plugins/

    #70177

    In reply to: Notification Problem

    21cdb
    Participant

    It happened to me as well – same scenario as modemlooper has been described. I could get rid of the notification by clicking on the “friends” tab in the user menu.

    #69778
    3sixty
    Participant

    I use the bpGroups plugins (“forums” subdomain of the BP site) but the plug-in required some updating to get everything working smooth (activity notifications, public/private/hidden/ready only stuff)

    @nuprn1, what did you modify? I noticed that posts in bbpress don’t show up on the activity notifications, and the public/private/hidden stuff doesn’t seem to work either…

    Also, the plugin is looking for an Authorized Buddypress Username, or “the user that BuddyPress uses to access bbPress.” Is there actually still a user, or was that part of the older BP/bbpress integration method?

    #10011
    chopo87
    Participant

    Hi,

    I’m trying to make a plugin to allow users to upload documents to their buddypress profile. I’ve manage to setup the database, and the admin settings menu. Now what I need to do is add the code that generates a tab within the user’s profile where the user can upload/delete files and others can brows through them.

    I don’t really have a deep understanding of the inner workings of BuddyPress, all I’ve done so far is based on reading through other similar plug-ins and forum posts:

    The current code I’ve writer when activated brakes the individual members profile to the point that wordpress returns a blank page with not a single html tag. Here is the relevant code I’ve written so far. All I want to do at the moment is make the tab appear when I click on a users profile. I’ll deal with populating it later,

    // Create Slugs and global variables<br />
    if ( !defined( 'BP_PROFILE_DOCUMENTS_SLUG' ) )<br />
    define ( 'BP_PROFILE_DOCUMENTS_SLUG', 'profile_documents' );</p>
    <p> function bp_profile_documents_setup_globals() {<br />
    global $bp, $wpdb;</p>
    <p> /* For internal identification */<br />
    $bp->profile_documents->id = 'profile_documents';<br />
    $bp->profile_documents->table_name = $wpdb->base_prefix . 'bp_profile_documents';<br />
    $bp->profile_documents->format_notification_function = 'bp_profile_profile_format_notifications';<br />
    $bp->profile_documents->slug = BP_PROFILE_DOCUMENTS_SLUG;</p>
    <p> /* Register this in the active components array */<br />
    $bp->active_components[$bp->profile_documents->slug] = $bp->profile_documents->id;</p>
    <p>}</p>
    <p>/*/ add navigation item for user --<br />
    function bp_group_documents_setup_nav() {<br />
    global $bp, $current_blog, $group_object;</p>
    <p> bp_core_new_nav_item( array(<br />
    'name' => __( 'Chopo87' ),<br />
    'slug' => $bp->profile_documents->slug,<br />
    //'position' => 50,<br />
    //'show_for_displayed_user' => false,<br />
    //'screen_function' => 'messages_screen_inbox',<br />
    //'default_subnav_slug' => 'inbox',<br />
    //'item_css_id' => $bp->messages->id<br />
    ) );<br />
    }/**/

    As you can see the “bp_group_documents_setup_nav()” function definition is commented out. This is because as soon as I insert that piece of code I brake the user profile web page. I’ve added the other code based on the group documents plugin to see if it helped, but this may not be necesary or helpful. I’ve also commented out most of the bp_core_new_nav_item as i read (here http://codex.buddypress.org/developer-docs/functions/core/bp_core_new_nav_item/) that they are optional.

    You can find my full code at http://aitzol.com/buddypress_profile_documents.txt

    Any help would be apreciated

    Chopo

    #10002
    grosbouff
    Participant

    Hi, I have a main component (buddypress maps)

    and I’m writing a plugin to extend it.

    From that plugin, I would like to fire a new notification.

    In the component, I have

    $bp->maps->format_notification_function = ‘bp_maps_format_notifications’;

    function bp_maps_format_notifications( $action, $item_id, $secondary_item_id, $total_items ) {

    global $bp;

    switch ( $action ) {

    }

    return do_action( ‘bp_maps_format_notifications’, $action, $item_id, $secondary_item_id, $total_items );

    }

    in the plugin, I have

    add_action(‘bp_maps_format_notifications’,’bp_maps_profile_batch_locate_format_notifications’,10,4);

    function bp_maps_profile_batch_locate_format_notifications ($action, $item_id, $secondary_item_id, $total_items ) {

    global $bp;

    switch ( $action ) {

    case ‘batch_profile_marker_set’:

    $profile_edition_link=$bp->loggedin_user->domain . $bp->profile->slug.’/edit/group/’.$bp->maps_profile->options[‘group_id’];

    $link = ‘‘ . __(‘A location marker has been set using your profile information. Please check that its position is correct ! You can also edit or delete it.’, ‘bp-maps-profile-batch-locate’ ) . ‘‘;

    return apply_filters( ‘bp_maps_single_marker_set_notification’,$link);

    break;

    }

    do_action( ‘bp_maps_profile_batch_locate_format_notifications’, $action, $item_id, $secondary_item_id, $total_items );

    return false;

    }

    The notification IS saved; the notification count in buddypress IS show; but the notification link do not appear.

    Maybe a priority problem or something like this.

    Any idea ?

    #69562
    Bowe
    Participant

    First note: AWESOMEMILICIOUS!

    2nd note: Posting new blogposts works great! I can add new posts/photos and videos on the blog page and you get a nice growl like notification when you post something.. This is some serious next level stuff!

    The magazine theme layout looks cool, but I feel it’s bit overwhelming for certain users. especially on lower resolutions I feels a bit crammed, with the 3 column recent posts, etc. But I think that’s something personal, and you already said that you’re working on different layouts. I’ve tried to view a different layout in my blog, but could not find the settings. But my suggestion for a third theme would be:

    http://emberapp.com/bowromir/images/untitled-8/sizes/o

    This is quite simple but powerful enough.. I don’t know if you can add custom text boxes/widgets, but I think that would allow user to be creative with their blog. I forgot to offer a search/archive widget, but that would be handy as well.

    3rd note: To avoid confusion I would probably rename Status Update in the groupblog to something like News Update or Blog Update, so that it does not get mixed up with a status/activity update in BuddyPress. To be honest I think that the P2 status update does not add much to it, because a group admin can easily post a status update in the group itself. I understand it’s a added feature in the P2 theme, but I think BP handles it very well.. This is also something personal though :)

    4th: Maybe allow the user to switch to a full markup mode or tiny editor to have more control over longer posts. You already mentioned bringing everything to the front end, but maybe you can solve this by opening a lightbox with the full featured posting of the WP backed (and then remove the navigation in the admin, so the users only sees the posting area). This might be complicated and/ore messy, but it would make for a better user experience.

    I’m really really impressed with the current plugin so far and I can’t wait to try it on my site. Thanks so much for sharing this Marius and the rest of YWAM!

    peterverkooijen
    Participant

    If you want to change or add to how user data is stored in the database, you can add some lines to this section of _process_login.php:

    //Insert a new user to our database and notify the site admin
    $user_login_id = wp_insert_user($user_data);
    $user_login_name = $user_data['user_login'];
    wp_new_user_notification($user_login_name);

    I added the following to get fullname as display name, instead of just the first name:

    $fullname = $fbuser['first_name'].' '.$fbuser['last_name'];
    $firstname = $fbuser['first_name'];
    $lastname = $fbuser['last_name'];

    update_usermeta( $user_login_id, 'nickname', $fullname );

    $wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->users} SET display_name = %s WHERE ID = %d", $fullname, $user_login_id ) );

    I could probably shorten that, but it works…

    JK
    Participant

    Can I request that we move this discussion to my plugin homepage’s comments? It’s much easier to get notification everytime someone replies, and then other users of the plugin will be aware of it too :P

    #68973
    ecurtain
    Participant

    Thank you *so much* for suggesting mail_from, ruthlessbookie. It solved my problem when nothing else seemed to work. I’m running WP / single user, and tried every suggestion I found:

    What did not work:

    – disabling everything except BP (notifications worked fine with BP off)

    – setting up SMTP plugins with gmail

    – setting up SMTP with my own host (hostmonster)

    – installing the BP update

    What DID work:

    – mail_from plugin — Whoo hoo!

    So glad there’s a solution. Will take a look at xmsmmgrs’s suggestion next. Thanks!

    #68867
    Boone Gorges
    Keymaster

    Yeah, it’s a bit of a change, isn’t it?

    My strategy for making the transition easier for my users is two-fold:

    1) Make the profile the default view for users (rather than activity), by adding

    define( 'BP_DEFAULT_COMPONENT', $bp->default_component = 'profile' );

    to wp-config.php

    2) Adding the @mentions profile tab, plus some explanatory text, to the members/single/home.php template in my child theme. Thus, right below

    <?php locate_template( array( 'members/single/profile.php' ), true ) ?>

    I’m adding

    <h4><?php bp_displayed_user_fullname(); ?>'s mentions</h4>
    <p>Whenever anyone posts an update on this site containing <?php bp_displayed_user_fullname(); ?>'s handle (<strong>@<?php bp_displayed_user_username() ?></strong>), it shows up as a public message below.</p>

    <p>Want to leave your own public message for <?php bp_displayed_user_fullname(); ?>?

    <div class="generic-button" id="post-mention" >
    <a href="<?php bp_send_public_message_link() ?>" title="<?php _e( 'Mention this user in a new public message, this will send the user a notification to get their attention.', 'buddypress' ) ?>"><?php _e( 'Mention this User', 'buddypress' ) ?></a>
    </div>

    followed by the activity loop, taken right from bp-default/activity/activity-loop.php, but with the following relevant modification: the arguments for bp_has_activities are

    <?php if ( bp_has_activities( 'scope=mentions' ) ) : ?>

    (You’ll have to do some styling to make it look right, but you get the idea.)

    It’s not an exact duplication of the Wire – I’ve tried to embrace the new @mention stuff, while still capturing the “leave a note for me” spirit of the Wire.

    #9859
    1drummergirl
    Participant

    I just set up buddypress on my site yesterday and I’m still tweaking it to fit my theme. I am able to find most of my answers in the forums – kudos to you all for providing such help!

    My issue is that the name of my site is Girls Can’t WHAT? but when an email notification is sent to a user form buddypress, it shows up as Girls Can't WHAT? (in case that gets mangled when I click “send post”, the apostrophe is converted to the ascii code instead of the apostrophe.)

    I tried changing it in my wp general settings to the ascii code instead of the apostrophe, but it still shows up that way. I even tried using /’ but that didn’t work either. How can I fix this?

    #68622
    rich! @ etiviti
    Participant

    First, where is the “@ mentions” part in the BBCode that @3sixty is referring to?

    Technically when Ajaxed Quote is enabled and someone quotes a post in the forums – the activity-update-filter will pick up the @username mention – thus if the user has the notifications turn on – they will get an email about it.

    Second, should we be activating both BBCode and Shortcode sub-plugins?

    No

    Activate the “Forum Extras – BBCode” if you want to parse the bbcode into html prior to database update. (useful if you have external but also ok for internal). I’m a fan of this method as the process happens pre-save but when a user goes back to edit a post – they’ll see html

    Or

    Activate the “Forum Extras – Shortcode” and then Viper’s Shortcode BBCode wordpress plugin – this will retain the shortcode bbcode markup in the database. All this does does is enable the shortcode filter hook on the bbpress post content. (buddypress already hooks shortcode filter on activity updates) – Downside to this approach if you ever deactivate the shortcode – you’ll see the bbcode markup instead of filtering to the html equivalent but when a user edits a post – they see bbcode instead of html.

    Hopefully not too confusing. I’ll update the documentation in the next release (working on getting bbpress favorites enabled)

    #9746
    modemlooper
    Moderator

    I basically just want the notification to show an “button” instead of all the text. So if it’s a message it will have [1] <– The number only

    I copied the function over and renamed it.

    function bp_notifications_menu() {
    global $bp;

    if ( !is_user_logged_in() )
    return false;

    echo '<li id="bp-adminbar-notifications-menu"><a href="' . $bp->loggedin_user->domain . '">';
    _e( '', 'buddypress' );

    if ( $notifications = bp_core_get_notifications_for_user( $bp->loggedin_user->id ) ) { ?>
    <span><?php echo count($notifications) ?></span>
    <?php
    }

    echo '</a>';
    echo '<ul>';

    if ( $notifications ) { ?>
    <?php $counter = 0; ?>
    <?php for ( $i = 0; $i < count($notifications); $i++ ) { ?>
    <?php $alt = ( 0 == $counter % 2 ) ? ' class="alt"' : ''; ?>
    <li<?php echo $alt ?>><?php echo $notifications[$i] ?></li>
    <?php $counter++; ?>
    <?php } ?>
    <?php } else { ?>
    <li><a href="<?php echo $bp->loggedin_user->domain ?>"><?php _e( '', 'buddypress' ); ?></a></li>
    <?php
    }

    echo '</ul>';
    echo '</li>';
    }

    ?>

    #68073
    Michael Berra
    Participant

    @andy: great! Really awaiting to use this plugin… Hopefully it will work nicely with notification (as mentioned above without making the users crazy :-)), because both plugins are very important for my platforms!

    gregpill
    Participant

    Hi all

    First off a HUGE thumbs up to all involved in the BuddyPress project – it’s a phenomenal development & we’re loving it!

    I have just upgraded our single user installation (running on WP 2.9.2) to BP 1.2.2. We are using the BP-Default theme.

    The reason I rushed into the upgrade was to implement the new member email activation fix as mentioned in the change log (Fixed inconsistencies with new account activation between WordPress MU and standard WP. All new accounts must now be activated to confirm a valid email is being used.)

    However two test registrations, using different email addresses (both tested as valid) produced no email activation messages. Am I missing a setting somewhere that needs to be in place in order to achieve this feature on a single installation site?

    Secondly – is there a way to implement a redirect or a message of some sort to users who have registered but not yet activated their account? At the moment, trying to login with one of the new not activated accounts simple sends the user back to the home page. Something along the lines of a “Your account still needs to be activated, please follow the instructions in the email sent to your address”.

    And finally – if 1 and 2 above are solvable, would the addition of a “resend activation email” link somewhere be out of the question as a further enhancement to the system?

    Both these test accounts are passed to the WP user list and appear under the users settings in the admin dashboard as expected.

    Thanks in advance for any suggestions!

    P.S. System emails are still being sent without problems – received email notification of a private message from the site so don’t think that’s a problem.

Viewing 25 results - 951 through 975 (of 1,091 total)
Skip to toolbar