Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'notification user id'

Viewing 25 results - 1,026 through 1,050 (of 1,072 total)
  • Author
    Search Results
  • #54165
    Mike Pratt
    Participant

    @Boone – Cool. Brent and I have decided to go with your version for our interim rollout tonight. Yours just implements users options much better. However, we are going to redo the user sent email on notification as we don’t think it steers novice users well to action 9from experience) Not a big deal and I hope you aren’t offended. It involves a few extra variables and copy tweaks. I’ll post you when it’s done.

    Mike

    #53601
    Boone Gorges
    Keymaster

    Wow, Westpointer, we had the same idea at the same time. https://buddypress.org/forums/topic/group-forum-subscription

    My version allows a bit more user control (opting out of specific discussions or entire groups) by using bbPress’s native Favorites function. I wonder if there’s some way you and I can combine forces :)

    #6799
    stwc
    Participant

    Hopefully it’s not just for me, but the excellent Achievements plugin is throwing this error

    Warning: call_user_func_array() [function.call-user-func-array]: First argument is expected to be a valid callback, '' was given in /home/.unger/wonderchicken/jobsee.kr/community/wp-includes/plugin.php on line 414

    for me, but only when I hit the summary page, and it only seems to happen when getting there from the Notifications part of the admin bar. If I go there from the My Account—>Achievements–>Summary, no error is thrown.

    BP1.1, WPMU 2.8.4, Achievements 1.1, fresh install.

    #52820
    Paul Wong-Gibbs
    Keymaster

    I literally have to go to work after this post but:

    To fix your site, rename your plugins directory to anything else i.e. ‘aardvark’. Load admin again, it should load up OK. Rename ‘aardvark’ back to plugins. You’ll have to re-activate any existing plugins. Once those have been done, try activating BP site-wide again.

    BP v1.0.3 tables are:

    wp_bp_activity_sitewide,wp_bp_activity_user_activity,wp_bp_activity_user_activity_cached,wp_bp_friends, wp_bp_groups,wp_bp_groups_groupmeta,wp_bp_groups_members,wp_bp_groups_wire,wp_bp_messages_messages,wp_bp_messages_noticeswp_bp_messages_recipients,wp_bp_messages_threads,wp_bp_notifications,wp_bp_user_blogs,wp_bp_user_blogs_blogmeta, wp_bp_user_blogs_comments,wp_bp_user_blogs_posts,wp_bp_xprofile_data,wp_bp_xprofile_fields,wp_bp_xprofile_groups,wp_bp_xprofile_wire,

    Safe to delete as you haven’t used BP yet. Also these records in wp_sitemeta:

    Any “meta_key” beginning with “bp-” i.e. bp-core-db-version, bp-friends-db-version.

    If you don’t remove those meta_key records, then BP will think it’s already installed and won’t install itself again.

    Before you activate BP again, open up your web server error log in a window and see if you get any specific messages when you try to run.

    Also, versions of WPMU and BP you are you trying to install here will help us help you.

    #52612
    gerikg
    Participant

    this is what I got so far…

    <a href="<?php echo get_option('home') ?>/members/<?php $user_info = get_userdata($user_ID);echo $user_info->user_login; ?>/messages"><?php if ( bp_message_thread_has_unread() ) : ?>You Have New Messages<?php else: ?>Mailbox<?php endif; ?></a>

    It keeps coming out as “Mailbox” when I know I have a new message. Am I doing it right? What am I missing?

    Greg
    Participant

    Posting this here in case someone would like to patch their current installation. I have also opened a ticket: http://trac.buddypress.org/ticket/1015

    Issue: Email notifications still get sent when a user opts out using the notification settings form. The bug is in the function that sends the mail, where there are two errors on the line that checks whether the user’s ‘notification_messages_new_message’ setting == “no”.

    Fix: Around line 12 in file “bp-messages-notifications.php”, in function “messages_notification_new_message”, the line is currently:

    if ( $message->sender_id == $recipient_ids[$i] 'no' == get_userdata( $recipient_ids[$i], 'notification-messages-new-message' ) ) continue;

    That should be changed to read:

    if ( $message->sender_id == $recipient_ids[$i] 'no' == get_usermeta( $recipient_ids[$i], 'notification_messages_new_message' ) ) continue;

    The two changes:

    – call function get_usermeta instead of get_userdata

    – underscores instead of dashes in the metadata string

    #51863
    Jeff Sayre
    Participant

    r-a-y

    There are a number of new hooks and an array object that need to be available for the privacy component to function. Although the alpha versions may work with v1.1, the full-blown version is really targeted for v1.2 and will require that as a minimum.

    Concerning your wire post, for some reason, I believe that I never received that email. Strange, since I do have all my email notifications set to “Yes”.

    But, to answer that specific question, your direct calls to xprofile fields should still function properly. Since you are pulling your data directly from the table and not from a templatetag function, you should be fine. Now, if you want your direct calls to be subjected to privacy control, then that is a different matter. You would then need to pull your data after the fields array has been filtered.

    There is a separate table that gets installed that handles all privacy object settings. The privacy component filters the fields array that populates the profile page, removing any field-level elements that a given user chooses to hide from a given viewer category.

    #51652
    r-a-y
    Keymaster

    Just experienced the OP’s problem.

    I looked into it and found a tentative fix… though a BP dev will need to look at the code.

    In “bp-core/bp-core-notifications.php”, look for the bp_core_notifications_for_user() function.

    Then look for these lines:

    $item_id = ( 1 == $action_item_count ) ? $component_action_items[0]->item_id : false;
    $secondary_item_id = ( 1 == $action_item_count ) ? $component_action_items[0]->secondary_item_id : false;

    Change this to:

    $item_id = $component_action_items[0]->item_id;
    $secondary_item_id = $component_action_items[0]->secondary_item_id;

    I don’t know why there was a check done for only 1 item and then returning false for more than 1… if a BP dev can explain why, that’d be great.

    Let me know if anyone encounters any problems.

    Trac ticket made.

    #50191
    Jeff Sayre
    Participant

    The Skeleton Component is just that–a generic, bare-bones plugin template that you can use to create your own, custom BuddyPress plugin.

    But the only things that this plugin do is to put in profil EXAMPLE..

    Did you read the in-line documentation? At the top of bp-example.php it reads:

    --- SKELETON COMPONENT V1.2.2 ---

    Contributors: apeatling, jeffsayre

    This is a bare-bones component that should provide a good starting block to
    building your own custom BuddyPress component.

    It includes some of the functions that will make it easy to get your component
    registering activity stream items, posting notifications, setting up widgets, adding
    AJAX functionality and also structuring your component in a standardized way.

    It is by no means the letter of the law. You can go about writing your component in
    any style you like, that's one of the best (and worst!) features of a PHP based platform.

    I would recommend reading some of the comments littered throughout, as they will
    provide insight into how things tick within BuddyPress.

    You should replace all references to the word 'example' with something more suitable
    for your component.

    IMPORTANT: DO NOT configure your component so that it has to run in the
    /plugins/buddypress/ directory. If you do this, whenever the user auto-upgrades
    BuddyPress - your custom component will be deleted automatically. Design
    your component to run in the /wp-content/plugins/ directory

    #5803
    grosbouff
    Participant

    Hi; I got another problem while trying to handle a single item.

    First, this is the code which ‘handles’ my navigation (checks if we are in our profile, in another profile, in the directory or viewing a single item)

    if ($bp->current_component == $bp->classifieds->slug) { //we are in classifieds
    if (bp_is_home()) { //we are in our profile
    ...
    }elseif (($bp->displayed_user->id) && (!bp_is_home())) {//we are in someone else profile
    ...
    }else if ( $bp->is_single_item ) {
    // We are viewing a single classified, so set up the
    // classified navigation menu using the $classified_obj global.

    /* When in a single classified, the first action is bumped down one because of the
    classified name, so we need to adjust this and set the classified name to current_item. */
    $bp->current_item = $bp->current_action;
    $bp->current_action = $bp->action_variables[0];
    array_shift($bp->action_variables);

    $classified_link = $bp->root_domain . '/' . $bp->classifieds->slug . '/' . $classified_obj->slug . '/';

    // Reset the existing subnav items
    bp_core_reset_subnav_items($bp->classifieds->slug);

    bp_core_add_nav_default( $bp->classifieds->slug, 'classifieds_screen_classified_home', 'home' );
    bp_core_add_subnav_item( $bp->classifieds->slug, 'home', __('Home', 'buddypress'), $classified_link, 'classifieds_screen_classified_home', 'classified-home' );
    // If the user is a classified mod or more, then show the classified admin nav item */
    }else { //we are in directory
    $bp->is_directory = true;
    ...
    }

    }
    }

    So if we are viewing a single item; this is the function called :

    function classifieds_screen_classified_home() {
    global $bp;

    echo "function classifieds_screen_classified_home";exit;

    if ( isset($_GET['new']) ) {
    // Delete classified request notifications for the user
    }

    do_action( 'classifieds_screen_classified_home' );

    bp_core_load_template( apply_filters( 'classifieds_template_classified_home', 'classifieds2/classified-home' ) );

    }

    Here’s my problem :

    If I go to /classifieds/classified1234

    It goes to the function classifieds_screen_classified_home() and runs the code echo “function classifieds_screen_classified_home”; exit; ).

    But If I go to /classifieds/classified1234/watch

    It does not !

    What is strange is that in my code above; if I put

    echo “single item”;exit;

    at the top or at the bottom inside my statement

    }else if ( $bp->is_single_item ) {

    and that I try

    /classifieds/classified1234 or /classifieds/classified1234/watch, it does echoes “single item” then exit.

    So I don’t understand why after it doesn’t run the function classifieds_screen_classified_home.

    Any idea ?

    Thanks a LOT.

    #5802
    grosbouff
    Participant

    Hello, I got a little error here.

    I’m trying to load the template for a single item.

    My start point was the bp-groups plugin.

    Here’s the function called if it is a single item :

    function classifieds_screen_classified_home() {
    global $bp;

    if ( $bp->is_single_item ) {

    if ( isset($_GET['new']) ) {
    // Delete classified request notifications for the user
    }

    do_action( 'classifieds_screen_classified_home' );

    bp_core_load_template( apply_filters( 'classifieds_template_classified_home', 'classifieds2/classified-home' ) );

    }
    }

    It does go in that function since it exits if I put “exit;” at the beginning of the function.

    But the template does not load; I got a Sorry, that page was not found alert.

    • I’ve checked the name of the files, it’s ok : I have a bp-themes/bpmember/classifieds2/classified-home.php file.
    • If I put a “exit” at the top of classified-home.php, it does not exit -> so it is sure the template does not loads.
    • If I comment the bp_core_load_template line, it goes to my profile (.

      …/members/admin)

    Does anyone have an idea of what the problem could be ?

    Thanks !

    #5758
    zeitweise
    Participant

    Hi there,

    when trying to update from bp 1.0.1 to 1.0.2 I get this error notification:

    Fatal error: Cannot redeclare bp_activity_install() (previously declared in /home/pacs/mih15/users/qtipp/doms/q-tipp.org/subs/community/buddypress/wp-content/plugins/buddypress/bp-activity.php:27) in /home/pacs/mih15/users/qtipp/doms/q-tipp.org/subs/community/buddypress/wp-content/plugins/buddypress/bp-activity.php on line 101

    1. Which version of WPMU are you running? – 2.7.1
    2. Did you install WPMU as a directory or subdomain install? –

      subdomain install

    3. Was WPMU functioning properly before installing/upgrading BuddyPress? –

      yes

    4. Which version of BuddyPress (BP) are you running? –

      1.0.1

    5. Do you have any plugins other than BuddyPress installed and activated? –

      yes: geopress, CPT BuddyPress XProfile Privacy, bp-events

    6. Are you using the standard BuddyPress themes or customized themes? – standard
    7. Have you modified the core files in any way? –

      yes, according to this advice for cpt buddypress xprofile privacy plugin

      bp-xprofile/bp-xprofile-classes.php
      find method
      BP_XProfile_Field::get_edit_html()

      and at the end of the method, just before return $html, add this line:
      $html = apply_filters('bp_xprofile_field_edit_html', $html, $this);

    8. Do you have any custom functions in bp-custom.php? –

      no

    9. Please provide a list of any errors in your server’s log files. –

      sorry, I do not know how to access these.

    #5723
    carinallc
    Participant

    Relatively new BP install, working smoothly – Several user accounts have been created, as well as the “admin” blog and a user blog.

    A new user account was created this morning, and that user created a new blog (I got the email notification for both). I can go to the blog directly by typing in the URL or clicking on the link in the email notification.

    However, the blog doesn’t show up in the Blogs list. Nor do the entries show up in any activity stream or recent posts.

    Any ideas? Thank you.

    #48397
    grosbouff
    Participant

    Hello. I’ve started to work on it since a few weeks.

    It starts to be interesting.

    *are things not started yet or **planed for a even more later

    TYPES & CATS

    -customizable types and categories, nestables

    **customizable fields for posting/showing classifieds in it

    MODERATION :

    -decide wether or not to allow public viewers

    -decide wether or classifieds needs validation before being published

    -*grant a user moderator for all classifieds or by type / category

    SITE VIEW

    -search, explore, filter (by categories, days, **custom fields)

    MEMBER VIEW

    -show my published classifieds

    -show my- awaiting moderation [author/moderators only]

    -show my unactive

    -watched : when you click a button on a classified, it will be in your profile and you’ll be notified if someone posted a on the wire or if the author modify it +*watched types & cats

    -single classified : see details, author, see & post on the wire, see watchers

    MEMBER OPTIONS

    -*email notifications for new classifieds, classifieds by type,category

    -*email for new posts on wire (watched classifieds)

    -**email for new classifieds of friends

    -*filters for home page

    POSTING

    – user needs to agree terms & conditions (only once) before posting

    -fields : title, description, type, category

    -****customizable fields

    -****photos

    -enable wire

    -*enable email notifications when editing (for watchers)

    …maybe i’ll start with this :)

    I also have to say that it is a huuuge work and I’ll probably open a project page with a PAYPAL button to encourage me (need it).

    I’m not a professional coder but i’m trying to do the best possible.

    Today i’ve almost finished the admin part.

    Proud to say that I’ve find something to dynamically (jQuery) add types/cats and edit,order (nested!!),delete,save them. It works !!!

    <img src=”http://img53.imageshack.us/img53/420/classifiedssetup.jpg&#8221; alt=”classifieds setup” >

    Moominmama
    Participant

    Oh one more thing! I think my issue before was that I was using a newer version of bbpress on my install. I didn’t realize that until I went back through The Easy Button’s integration instructions:

    http://theeasybutton.com/blog/2009/04/30/integrating-buddypress-10-wpmu-and-bbpress/

    This time around I used the bbpress he linked to directly and it was the old green interface. The one I used on the last screwy installation was a newer one with an interface much more like the current WordPress version. So that’s something else folks might want to try if they’re having trouble (going back down to an earlier BBPress install.)

    Working site is here: http://www.openadoptionsupport.com

    I was able to import users and groups very easily via PHPMyAdmin so I didn’t really lose anything with the clean reinstallation.

    Roger Coathup
    Participant

    @jeff:

    I’d already marked two of those threads as resolved, and posted what was causing the problem.

    They weren’t problems related to this.

    I have 2 unresolved threads open: the media library duplicate declaration problem, and the failure to add a friend issue.

    I’ve responded to your feedback on these in thread: https://buddypress.org/forums/topic.php?id=3000

    I appreciate the helpful responses from anyone on this forum (moderators and regular users alike). Thanks in advance.

    #46711
    petronic
    Participant

    I am very interested in privacy component. How is it going so far? Do you have some estimation when will it be available to test or use?

    What I have found as a must regarding privacy (until now) is:

    – allowing user to set what details from profile s/he wants to be public, available just to friends or private

    – settings on activity streams which will allow user to select what type of activities s/he wants to be displayed in sitewide activity, be available to friends or be totally private. This settings could be similar to Notification settings (for email notifications).

    I intended to write this on my own, but found out that it can’t be done easily without changing activity core files (and that is never a good option) and then I discovered that you are working on privacy component. So, if you see a way how I can help in development process, please let me know.

    Moominmama
    Participant

    First of all, thanks as always to the amazing support system around the WordPress family!! You guys are great and I wouldn’t have gotten THIS far without the generous support and multitude of resources on blogs and on this forum. I’m posting after doing many searches and not finding a fix that applies. (Granted, I ain’t all that techie and I may be missing something totally obvious!)

    Here’s my site: http://www.openadoptionsupport.com

    I’m running WPMU 2.7.1 and I’ve installed it in the root of my domain at BlueHost. This is a clean, manual (not simplescripts) install and WPMU was working fine when I carefully added BuddyPress and then linked it to BBPress. These are the plugins I have activated (besides BuddyPress):

    Sitewide:

    Limit Blogs per User 1.0

    FV Community News 1.3.1

    NoSpamUser 0.7.2

    Not Sitewide:

    Akismet 2.2.3

    Contact Form 7 1.10

    Page Links To 1.8

    Subscribe To Comments 2.1.2

    I’m using the default theme.

    It’s been a rocky start but stuff is working for the most part now. However I can’t add friends. When I click “add” I don’t get any kind of ajax — I just get shot right to my own profile. So say I’m logged in as Dawn and want to friend myself as Admin (I’ve got Admin open in Firefox and Dawn open in Opera), I’ll click the “add friend” by Admin and get shot right to my Dawn profile.

    When I try to message by clicking “send a message” or by replying to a sent message, everything seems like it’s working but then when I hit send, I end up back at the “compose” page with empty fields. If I send a message from there by manually inputting the addressee (“admin”) it’ll work. Admin will get the message and (eventually) an email notification.

    Finally if I add something to the wire in a group and choose “notify members by mail” nothing shows up by mail.

    Error Logs (note: I have some other issues going on and some of these errors may be unrelated to this or they may all be one and the same — just trying not to throw EVERYTHING into one thread but I did up my php.ini memory to 128mb):

    [Sun May 31 13:56:14 2009] [warn] RewriteCond: NoCase option for non-regex pattern ‘-d’ is not supported and will be ignored.

    [Sun May 31 13:56:30 2009] [warn] RewriteCond: NoCase option for non-regex pattern ‘-f’ is not supported and will be ignored.

    [31-May-2009 08:20:43] PHP Warning: array_merge() [function.array-merge]: Argument #2 is not an array in /home1/openboo2/public_html/wp-content/plugins/buddypress/bp-forums/bp-forums-bbpress-live.php on line 425

    [31-May-2009 07:19:32] PHP Warning: mysql_connect() [function.mysql-connect]: Access denied for user ‘openboo2_oas’@’localhost’ (using password: YES) in /home1/openboo2/public_html/blogging/forum/bb-includes/backpress/class.bpdb.php on line 123

    [31-May-2009 07:19:32] PHP Warning: Cannot modify header information – headers already sent by (output started at /home1/openboo2/public_html/blogging/forum/bb-includes/backpress/class.bpdb.php:123) in /home1/openboo2/public_html/blogging/forum/bb-includes/functions.bb-pluggable.php on line 214

    [31-May-2009 08:20:43] PHP Warning: array_merge() [function.array-merge]: Argument #2 is not an array in /home1/openboo2/public_html/wp-content/plugins/buddypress/bp-forums/bp-forums-bbpress-live.php on line 425

    [31-May-2009 08:56:25] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 8192 bytes) in /home1/openboo2/public_html/wp-includes/theme.php on line 180

    [31-May-2009 08:59:05] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 7680 bytes) in /home1/openboo2/public_html/wp-includes/kses.php(408) : runtime-created function on line 1

    [31-May-2009 09:07:39] PHP Fatal error: Allowed memory size of 33554432 bytes exhausted (tried to allocate 500001 bytes) in /home1/openboo2/public_html/wp-includes/class-snoopy.php on line 894

    #45838
    mgrunk1
    Participant

    BuddyPress 1.0

    Wordpress MU 2.7.1

    *replaced db name w/ mydb – and this is the errors that show at the bottom of the page in the admin – if I delete the BP plugin, the messages all go away.

    WordPress database error Table ‘mydb.wp_bp_xprofile_data’ doesn’t exist for query SELECT d.value, f.name FROM wp_bp_xprofile_data d, wp_bp_xprofile_fields f WHERE d.field_id = f.id AND d.user_id = 1 AND f.parent_id = 0 AND f.name = ‘Name’ made by require, require_once, require_once, require_once, do_action, call_user_func_array, bp_core_setup_globals, bp_core_global_user_fullname, bp_fetch_user_fullname, xprofile_get_field_data, BP_XProfile_ProfileData->get_value_byfieldname WordPress database error Table ‘mydb.wp_bp_xprofile_fields’ doesn’t exist for query SELECT id FROM wp_bp_xprofile_fields WHERE name = ‘Name’ made by require, require_once, require_once, require_once, do_action, call_user_func_array, bp_core_setup_globals, bp_core_global_user_fullname, bp_fetch_user_fullname, xprofile_set_field_data, xprofile_get_field_id_from_name, BP_XProfile_Field->get_id_from_name WordPress database error Table ‘mydb.wp_bp_notifications’ doesn’t exist for query SELECT * FROM wp_bp_notifications WHERE user_id = 1 AND is_new = 1 made by require, require_once, include, get_footer, locate_template, load_template, require_once, wp_footer, do_action, call_user_func_array, bp_core_admin_bar, do_action, call_user_func_array, bp_adminbar_notifications_menu, bp_core_get_notifications_for_user, BP_Core_Notification->get_all_for_user

    enlightenmental1
    Participant

    @ Atul Singhal

    duplicate you /register.php in your buddypress-home theme,

    (duplicate it to keep it as a backup)

    towards the bottom of register.php you’ll see something like “do_bp_core_signup”

    you can comment that out and replace it with the Iframe version of the rpx plugin

    <iframe src=”https://buzzwe.rpxnow.com/openid/embed?token_url=http%3A%2F%YOUR_SITE.com%2F%3Frpx_response%3D1%26goback%3Dhttp%253A%252F%252FYOUR_SITE.com/WELCOME_LANDING_CUSTOM_PAGE&#8221;

    scrolling=”no” frameBorder=”no” style=”width:400px;height:240px;”>

    </iframe>

    just change YOUR_SITE and WELCOME_LANDING_CUSTOM_PAGE to your own token url

    one issue I have with this on my site, is that the RPX plugin doesn’t gather much information… sometimes it will only get the email/username… sometimes the email is a “proxy mail email ” => @yahoo12343-proxymail.com (I haven’t confirmed this with all the 3rd party login providers)

    this will effect how the notifications work… so you’ll proly want your landing page to have instructions to update their profile information

    that should work

    jfcarter
    Participant

    I have used code snippets from this site to add menu items to the buddybar (using bpcustom.php). They look great, but are visible to everyone, like the Login and Signup menu items. Does anyone know how I can hide these add-on menus when users are not logged in? (like My Account, Blogs, Notifications, etc.)

    Many thanks.

    #44891
    jfcarter
    Participant

    Hi all,

    The code is located in wp-includes/wpmu-functions.php (it is a big file)

    A few caveats:

    1) There is text for the user signup email and for the blog signup email (blog signup email is also in the admin panel)

    2) There is text for a bunch of other emails, alerts and notices. All over the place

    3) The text is located in some squirrely locations, so move your cursor slowly (I missed some of the phrases a few times)

    4) Keep a log of what you change, because wpmu-functions.php will change with WPMU upgrades.

    5) You probably already know to avoid apostrophes and other symbols–depending on which ones you use, errors show up. I just avoided contractions.

    Hope this helps.

    #44889
    peterverkooijen
    Participant

    I\’d like to know as well. Especially that \”Dear User\” annoys the hell out of me. \”User\” sounds like \”drug user\” or \”abuser\” or \”you\’re not a friend, you\’re just a user!\”.

    The email is sent out after the new member has already given his name. There should be a way to just include the full name or first name in the welcome email. It\’s standard practice.

    BTW, Socialpreneur, do you mean this thread? It’s not very helpful.

    #44528
    belogical
    Participant

    yeah, it was in v1.1 for sure. i used it for my first component. i found a reference in /wp-content/plugins/buddypress/bp-example/bp-example-cssjs.php in v1.1. I tried adding this back myself and it didn’t work.

    /**
    * bp_example_add_activity_bullets_css()
    *
    * This function will allow your component to dynamically add CSS to themes so that you can
    * set the activity feed icon to use for your component.
    */
    function bp_example_add_activity_bullets_css() {
    ?>
    li a#my-example, li a#user-example {
    background: url(<?php echo site_url( MUPLUGINDIR . \'/bp-example/images/heart_bullet.png\' ) ?>) 88% 50% no-repeat;
    }

    li.example {
    background: url(<?php echo site_url( MUPLUGINDIR . \'/bp-example/images/heart_bullet.png\' ) ?>) 0 8% no-repeat;
    }

    table#bp-example-notification-settings th.icon {
    background: url(<?php echo site_url( MUPLUGINDIR . \'/bp-example/images/heart_bullet.png\' ) ?>) 50% 50% no-repeat;
    }
    <?php
    }
    add_action( \'bp_custom_member_styles\', \'bp_example_add_activity_bullets_css\' );
    add_action( \'bp_custom_home_styles\', \'bp_example_add_activity_bullets_css\' );

    ?>

    #43907
    zipnguyen
    Participant

    Burt,

    Thanks for the reply. When myself, friends, or family create a profile to test the site, I always get an email as the administrator.

    But over the past few weeks, I’m getting individuals creating buddypress profiles and upone further research into my database, I track their email addresses back to health supplements, pharma drugs, and porn sites. I don’t receive an email notification when these buddypress profiles are made.

    Currently my settings are as follows, where the second choice with the “X” is selected.

    Disabled

    X Enabled. Blogs and user accounts can be created.

    Only user account can be created.

    Only logged in users can create new blogs.

    Wondering how can they create buddypress profiles, without me getting notifications?

    Thanks,

    Ninh

Viewing 25 results - 1,026 through 1,050 (of 1,072 total)
Skip to toolbar