Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'notification user id'

Viewing 25 results - 1 through 25 (of 695 total)
  • Author
    Search Results
  • emaralive
    Moderator

    The URL provided in the email notification is just to a page that requires access by an appropriate logged-in user. The issue appears to be related to the process that is constructing the redirect URL. The example you provided appears to be mangled for an unknown reason:

    https://infosecportal.ru/wp-login.php/?redirect_to=https%3A%2F%2Finfosecportal.ru%2Fpolzovateli%2Fpauls%2Fbp-messages%2F#/conversation/11

    The slash that is after wp-login.php seems to be misplaced, additionally, there should be a slash after 11 and then I would expect &bp-auth=1&action=bpnoaccess after that.

    The redirect is constructed in the function bp_core_no_access() which can be viewed at the following URL for BP 14.3.4:

    https://github.com/buddypress/buddypress/blob/14.3.4/src/bp-core/bp-core-catchuri.php#L328-L405

    Typically, $mode is equal to 2 which will then execute the code represented by lines 371 through 381: i.e.:

    		case 2:
    			if ( ! empty( $redirect ) ) {
    				bp_core_redirect(
    					add_query_arg(
    						array(
    							'bp-auth' => 1,
    							'action'  => 'bpnoaccess',
    						),
    						wp_login_url( $redirect )
    					)
    				);

    $redirect should be the URL that is represented in the email notification. The function wp_login_url(), which is a WordPress function, constructs/builds the redirect URL. The function wp_login_url() without arguments should, in your case, return:

    
    https://infosecportal.ru/wp-login.php
    

    The fact that there is a slash after the .php indicates that you should look there for why the slash is present, see the following regarding information on wp_login_url():

    wp_login_url()

    emaralive
    Moderator

    2) … Also there, there is no way to change things here ? Add the thumbnail on the posts list for example, or separate the “comments” and “posts” tabs,…

    Things” can be changed programmatically. Additionally, BuddyPress does not come standard with “Posts” or “Comment” tabs. The only separation for these items is via the dropdown filter selection for “Posts” or “Comments” located in the Sitewide or User Activity streams which is standard for BuddyPress.

    3) OK, really confusing.
    And if the displyed name and real name arent the same, how can a user know the real @ he has to use to tag someone ?
    BTW, i’ve made some tests and even if i use @displayname or @username, it doesnt send a notification to the user,…

    Users typically figure out who is who and for @mentions, only the username is used for notifications. For example, a scenario where there are 2 users with the same displayname which happens to be Apple, however, each has a different username because usernames must be unique. Maybe a visual will help you digest this information:

    Screenshot of @mention using the displayname

    If you are having issues with notifications, that is a different issue and might be related to some external factor such as a plugin or theme that is interfering with the notification process.

    As for Main settings, yes, those available via a UI are limited, however, programmatically, there are plenty via constants, filter hooks and action hooks.

    pharrell2
    Participant

    Sorry for the late answer, i was working on somthing else.

    Thanks for the answers 😉

    1) Weird, i didnt change something with plugin or theme.
    Also i dint install any template. I’ll take a look at this

    2) OK, thanks a lot, the ““Site Tracking” option wasnt checked 😀
    Now i can see posted blog posts and comments made.
    Also there, there is no way to change things here ? Add the thumbnail on the posts list for example, or separate the “comments” and “posts” tabs,…

    3) OK, really confusing.
    And if the displyed name and real name arent the same, how can a user know the real @ he has to use to tag someone ?
    BTW, i’ve made some tests and even if i use @displayname or @username, it doesnt send a notification to the user,…

    It is difficult to use BP as the options are only 2 single pages… :/

    teslavolt
    Participant

    I checked on the my buddypress’s /activity stream page and I noticed in the page source, there’s something defined:

    
    <script id="bp-nouveau-js-extra">
    var BP_Nouveau = {"ajaxurl":"https:\/\/mysite.com\/wp-admin\/admin-ajax.php","confirm":"Are you sure?","show_x_comments":"Show all %d comments","unsaved_changes":"Your profile has unsaved changes. If you leave the page, the changes will be lost.","object_nav_parent":"#buddypress","objects":{"0":"activity","1":"members","3":"blogs","4":"xprofile","5":"friends","7":"settings","8":"notifications"},"nonces":{"activity":"945da9770f","members":"3c2b470980","blogs":"0a006184ba","xprofile":"56da19c4b1","friends":"a437ee2b51","settings":"ce8e7d03fe","notifications":"ac5a574aa8"},"newest":"Load Newest","pulse":"15","activity":{"params":{"user_id":20,"object":"user","backcompat":{"before_post_form":false,"post_form_options":false},"post_nonce":"a7c93b3f4e","avatar_url":"\/\/www.gravatar.com\/avatar\/c4568b23422db4e779e93c73130989dd?s=50&r=g&d=mm","avatar_width":50,"avatar_height":50,"user_domain":"https:\/\/mysite.com\/members\/pen\/","avatar_alt":"Profile photo of Pen","objects":{"profile":{"text":"Post in: Profile","autocomplete_placeholder":"","priority":5}}},"strings":{"whatsnewPlaceholder":"What's new, Pen?","whatsnewLabel":"Post what's new","whatsnewpostinLabel":"Post in","postUpdateButton":"Post Update","cancelButton":"Cancel"}}};
    

    I can’t find what creates this script / variable.

    #336235
    emaralive
    Moderator

    Unfortunately, you’ve applied a band-aid at the Theme level. The next Theme update will remove your band-aid and you will have to apply it again, given the approach you’ve taken.

    The bp_loggedin_user_domain( ) function should have returned a URL with a trailing slash, for example:

    http://www.url.com/members/username/

    Which is why the Theme has it written as:

    bp_loggedin_user_domain() . $bp->notifications->slug

    Something is causing the trailing slash to be missing, solving for this will be the fix. Maybe a plugin or some custom code is filtering the return value, such that is stripping the trailing slash.

    Assuming you are using BuddyPress 14.3.3, see the following URL for the source code:

    bp_loggedin_user_domain()

    #336103
    emaralive
    Moderator

    Hi @dreampixel,

    Thanks for bringing this to my attention. It looks like some of the notifications are not being deleted when in actuality all should be deleted that are related to the deleted user.

    For example:

    • new_membership_request <- this is what you initially indicated
    • bbp_new_reply <- this what you indicated next
    • new_message <- notification for Private Messages

    The issue is that the function that deletes notifications in the event of a deleted user does not take into account that some notifications have the user_id of deleted user placed in the secondary_item_id column in the bp_notifications`database table.

    Long story shorter, I have a tentative patch that I am testing that will provide a remedy for this bug. I’ll create a ticket for a fix once I’m satisfied with the patch. I’ll keep you updated as to the progress and I’ll try to fit this into the next available release.

    #335647
    locker17
    Participant

    Hello,
    I have a follow up question to this old thread:
    https://buddypress.org/support/topic/how-to-get-notification-count-code/

    chatty24 asked “Could that also happen in real time (without refreshing the page)?”.

    I am having the same question. How can I ajaxify “bp_notifications_get_unread_notification_count( $user_id)”?

    Thanks for any help!

    #335389
    GyziieDK
    Participant

    Favorites to me is kinda the same as “liked posts”.. So either would work I guess.
    For now the favorites do work for the most part, but some areas do need an update.

    The “notifications” I’m talking about is on the
    #buddypress div.item-list-tabs.primary-list-tabs & activity-favorites

    – Basically the counter for the “marked as favorites” on the sub-navigation. If a member decides to remove an activity that another member has marked as a favorite the count dosen’t update or accomidate for this. So now the other user is left with an empty list but still a phantom “notification” on the sub navigation.

    The only way I’ve found to “reset” this is to go into the MySQL database itself and clear the meta-data from there in order to actually “reset”/update the counter. The issue is that it’s almost impossible to find the specific “favorite” data and dele only that one.

    Hope it makes sense! 🙂

    Error-065

    #334915
    cj74
    Participant

    Hello @pellepedersen

    You aren’t getting notification emails when a new user signs up? Am i understanding it right?

    I have the same setup as you. Discovered yesterday that people signing up are not receiving activation emails. Today i discovered I am not being notified when someone signs up.

    Did you find out why you aren’t getting any emails of a new user signing up. I would have thought that’s the most minimum of an alert which should work without any hiccups.

    #334864
    Renato Alves
    Moderator

    Three things:

    – I can’t replicate the issue you have.
    user_name is not a valid field, btw. It was deprecated.

    Using the followwing payload, I actually get this in BuddyPress 14.0 since you are using + in the user_login, that’s not valid.

    Request Payload.

    
    curl -X POST "https://bp-demo.test/wp-json/buddypress/v1/signup/" \
         -d "context=edit" \
         -d "user_email=pratik@testmail.com" \
         -d "user_login=testthe+request+" \
         -d "password=\"']));L)Q542q8dL3" \
         -d "signup_field_data[0][field_id]=1" \
         -d "signup_field_data[0][value]=testthe+request+" \
         -d "state=gggg" \
         -d "country=AZE" \
         -d "postal_code=444444" \
         -d "mobile_phone=555555555"
    
    
    {
      "code": "bp_rest_signup_validation_failed",
      "data": {
        "status": 500
      },
      "message": "Usernames can contain only letters, numbers, ., -, and @"
    }
    

    Here is the BP configuration I have locally, taken from my local site: https://bp-demo.test/wp-admin/site-health.php?tab=debug

    
    version: 14.0.0
    active_components: Extended Profiles, Settings, Friend Connections, Private Messages, Activity Streams, Notifications, User Groups, Site Directory, Members, Members Invitations
    url_parser: BP Rewrites API
    global_community_visibility: anyone
    template_pack: BuddyPress Nouveau 14.0.0
    ! hide-loggedout-adminbar: Yes
    ! bp-disable-account-deletion: Yes
    ! bp-disable-avatar-uploads: Yes
    ! bp-disable-cover-image-uploads: Yes
    bp-enable-members-invitations: No
    bp-enable-membership-requests: No
    ! bp-disable-profile-sync: Yes
    ! bp_restrict_group_creation: Yes
    ! bp-disable-group-avatar-uploads: Yes
    ! bp-disable-group-cover-image-uploads: Yes
    ! bp-disable-group-activity-deletions: Yes
    ! bp-disable-blogforum-comments: No
    _bp_enable_heartbeat_refresh: Yes
    
    #334662
    #334518

    In reply to: user engagement

    Venutius
    Moderator

    you could consider adding a chat facility like Wise Chat perhaps?

    Like new posts to user notifications, if there is a lot of blogging.

    Streamline the options you make available to users, complexity often puts people off.

    Kokiri
    Participant

    Hello BuddyPress Support Team / Community,

    I hope this message finds you well. I am writing to request a feature enhancement for our BuddyPress community. We would love to see an option to automatically display when a user uploads or updates their avatar in the activity feed. This feature would significantly enhance user engagement by keeping the community informed of profile updates and encouraging interactions.
    Benefits:

    Increased Visibility: Members can immediately see when someone updates their avatar, promoting profile visits and interactions.
    Enhanced Engagement: Users are more likely to comment or react to avatar changes, fostering a sense of community.
    Streamlined User Experience: Automated updates in the activity feed ensure that members do not miss out on important profile changes.

    Suggested Implementation:

    Avatar Update Trigger: When a user uploads or updates their avatar, a trigger should generate a new activity entry.
    Activity Message: The activity entry could display a message like “User [Username] has updated their avatar.”
    Integration with Existing Feed: The new activity entry should seamlessly integrate with the existing activity feed, appearing in chronological order.

    Customization Options:

    Privacy Settings: Allow users to opt-out of broadcasting their avatar changes if they prefer privacy.
    Activity Message Customization: Option for users to add a custom message along with their avatar update notification.

    We believe this feature would greatly benefit our community and enhance user experience. Thank you for considering our request. We look forward to your response and any potential updates on this feature. We did find a way to block certain activity types from showing up in the activity feed – however we’re looking for a way to add this particular type in our feeds.

    Best regards,

    #334190
    GyziieDK
    Participant

    After some testing this is indeed an issue that needs to be looked into.

    When a user marks something as “favorite” and that post is deleted – the notification is not being deleted with that said post.

    I’ve had to delete the row (usermeta) through my MySQL database before I managed to remove this. Clearing cache or anything like that will not work.

    Where do I report this to be “fixed?”.

    Thanks!

    #333989
    Koka boka
    Participant

    Hi @imath
    Thanks for the help!
    Maybe you can suggest something with this. I want to add a counter of new posts from the activity feed to the custom menu.
    I put it in functions.php but didn’t get any results. With my meager knowledge, I did not succeed. I can’t figure out how to add a counter to my custom menu.
    P.S I’m not sure that the code itself is workable!

    Here on the forum I was offered the following code:

    <?php
    function bp_update_last_visit() {
    if (is_user_logged_in()) {
    update_user_meta(get_current_user_id(), 'last_visit', current_time('mysql'));
    }
    }
    add_action('wp_login', 'bp_update_last_visit'); 
    add_action('wp', 'bp_update_last_visit'); 
    ?>
    <?php
    function bp_get_new_activity_count() {
    $last_visited = get_user_meta(get_current_user_id(), 'last_visit', true);
    $args = array(
    'action' => 'new_post', // Adjust based on the actions you want to count
    'since' => $last_visited, // Filter activities since the last visit
    );
    
    // Query BuddyPress activity with arguments
    $activities = new BP_Activity_Query($args);
    return $activities->get_total();
    }
    ?>
            <?php
            function add_activity_notification_count() {
    $count = bp_get_new_activity_count();
    if ($count > 0) {
    echo '<span class="activity-notification-count">' . $count . '</span>';
    }
    }
    add_action('bp_menu', 'add_activity_notification_count');
      ?> 
    #333582
    davinian
    Participant

    Hi @venutius, not sure if I am missing something, but it doesn’t appear to work – in-fact when enabled and user role is selected the User no only doesn’t receive an email but the notification in BP stops working.

    I might look at using a 3rd party registration plugin like Paid Memberships Pro.

    #333581
    jgasba
    Participant

    For the posterity: the Codex was not very clear for newer user: the Settings > Email mentionned is in the public user profile settings, and only available if you have the “Notifications” component enabled.

    It does not allow to define the default values for the users settings. Each user can customize their own themselves.

    If I’m not mistaken to customize the “default” you can use this code:

    
    add_action( 'bp_core_activated_user', 'wps_set_email_notifications_preference');
      
    function wps_set_email_notifications_preference( $user_id ) {
     
        $settings = array(
            'notification_activity_new_mention'         => 'yes',
            'notification_activity_new_reply'           => 'yes',
            'notification_friends_friendship_accepted'  => 'yes',
            'notification_friends_friendship_request'   => 'yes',
            'notification_groups_admin_promotion'       => 'yes',
            'notification_groups_group_updated'         => 'yes',
            'notification_groups_invite'                => 'yes',
            'notification_groups_membership_request'    => 'yes',
            'notification_messages_new_message'         => 'yes',
        );
      
        foreach( $settings as $setting => $preference ) {
            bp_update_user_meta( $user_id,  $setting, $preference );
        }
    }
    
    #333369
    wingflap
    Participant

    When I create a group and set it to hidden, it is not visible to me as admin (or any other user whether they’re members of the group or not.

    To test, I created a fresh WordPress install, installed the BuddyX (free) theme, then BuddyPress, bbPress, and finally BP Classic plugin. I’m logged in as admin. I created a user called sub1 who is a subscriber.

    I created a group called Normal which is set up as a public group. Then I created a second group called Private which is set up as private. Then I set up a group called Hidden which is set to hidden. When creating each group, I sent an invite to user Sub1.

    When I go to the Groups page (/groups), I see the group count as 3. I see the group Normal which I can click into and view group info, and the group Private which I can click into and see group info (since I’m logged in as admin who created the group). I do not see the group Hidden. But on the bottom it says “Viewing 1 – 3 of 3 groups” even though I can only see 2.

    If I log out, I can see the group Normal and click into it and see group info. I can see the group Private and click into it, but see a message saying that this is a private group. No group Hidden when logged out (as expected) and on the bottom it says “Viewing 1 – 2 of 2 groups”.

    If I log in as user Sub1, I only see 2 groups but “Viewing 1 – 3 of 3 groups”. The group Private says I have to be a member of the group to see anything. Then I accept the invite to group Private. Then I can see everything in the group. I don’t see the group Hidden. In my notifications, I click on the invitation to group Hidden and nothing happens.

    I tried and succeeded to reproduce this in a vanilla environment. Any help would be appreciated.

    Thanks.

    #333300
    thinlizzie
    Participant

    Hi dvalken

    Just to add info:

    This issue has also been on my site for four years.
    Only affects Android devices, not iPhone or pc/laptop.

    When the buddypress drop-down items in the admin bar are clicked (top-right on screen) , for example Activity, Profile, Notifications, Messages, then the first sub-menu item is automatically selected and clicked without any user action. The user is unable to select the second or third sub-menu item.

    Default WordPress Twenty Sixteen Theme.
    Buddypress 10.6.1

    #333206
    eluyawi
    Participant

    I have a problem with the notifications page, because when you are in the user’s profile, and you want to see your notifications, the page is not shown, a page error appears, because it does not exist.

    https://tudominio.com/miembros/horacios/notifications/
    BuddyPress Versión 12.2.0

    I don’t have any idea how fix it.

    #333045
    Mathieu Viet
    Moderator

    Hi @gomle

    Thanks a lot for your feedback. About Notifications, I believe using the Notification Web API can improve your “pulling the user to the site” need.

    Hi @oumz99

    I agree we should look into import/export. To comply with GDPR, users can export the data they created on the site from their profile settings. But a more global tool would be great to easily develop BuddyPress themes or move community generated content to another site.
    See & contribute to it there: https://buddypress.trac.wordpress.org/ticket/1058

    Hi @bclaim

    So do I! I totally agree with you. We need to rethink the Private Messages component/feature with the goal:
    1. to make it a chat like system for member(s) to member(s) discussions as well as between group members discussions. What are channels in Slack could be groups in BuddyPress Private Messages. I’m looking carefully to the Block Editor live collaboration system as it may help us to reach this goal.
    2. to move the Community wide notice feature outside of it.


    @priyam1234

    It should be the case. So it’s not an evolution to me but more a bug. I’ll look into it.

    @everyone:
    I’ll make sure to talk about it with other members of the BP Core Developers team during our next development meeting.

    Here’s my 2 main wishes for 14.0.0:
    – Review our different registration flows and allow Administrators to easily disable these BuddyPress registration flows.
    – Build new BP Blocks along with a new BP Blocks only Theme to start using the WP Site Editor to customize our community area.

    #332555
    Mike Witt
    Participant

    @anisf18,

    Could you provide a bit more information on what you’re seeing? I’ve also been having a problem, apparently with the timezone, between BuddyPress and bbPress. But the problem I’m seeing is definitely not new with BP 12.

    FYI, I’m just another BP user. Here a description of my issue:

    bbPress / BuddyPress notification interaction?

    #332525
    fasirathore
    Participant

    /home/u604108565/domains/forextradingcommunity.com/public_html/wp-content/themes/hello-elementor/functions.php on line 229

    [23-Dec-2023 07:58:30 UTC] PHP Warning: Attempt to read property “title” on null in /home/u604108565/domains/forextradingcommunity.com/public_html/wp-includes/class-wp-customize-widgets.php on line 905

    [23-Dec-2023 07:59:01 UTC] PHP Deprecated: The PSR-0 Requests_... class names in the Requests library are deprecated. Switch to the PSR-4 WpOrg\Requests\... class names at your earliest convenience. in /home/u604108565/domains/forextradingcommunity.com/public_html/wp-includes/class-requests.php on line 24

    [23-Dec-2023 08:08:45 UTC] Cron reschedule event error for hook: better_messages_cleaner_job, Error code: invalid_schedule, Error message: Event schedule does not exist., Data: {“schedule”:”better_messages_cleaner_job”,”args”:[],”interval”:300}

    [23-Dec-2023 08:11:04 UTC] PHP Deprecated: Function print_emoji_styles is deprecated since version 6.4.0! Use wp_enqueue_emoji_styles instead. in /home/u604108565/domains/forextradingcommunity.com/public_html/wp-includes/functions.php on line 6031

    [23-Dec-2023 08:32:43 UTC] PHP Warning: Attempt to read property “title” on null in /home/u604108565/domains/forextradingcommunity.com/public_html/wp-includes/class-wp-customize-widgets.php on line 905

    [23-Dec-2023 08:32:54 UTC] PHP Deprecated: File Theme without header.php is deprecated since version 3.0.0 with no alternative available. Please include a header.php template in your theme. in /home/u604108565/domains/forextradingcommunity.com/public_html/wp-includes/functions.php on line 6031

    [23-Dec-2023 08:42:41 UTC] PHP Deprecated: Function get_page_by_title is deprecated since version 6.2.0! Use WP_Query instead. in /home/u604108565/domains/forextradingcommunity.com/public_html/wp-includes/functions.php on line 6031

    [23-Dec-2023 08:43:00 UTC] PHP Deprecated: The PSR-0 Requests_... class names in the Requests library are deprecated. Switch to the PSR-4 WpOrg\Requests\... class names at your earliest convenience. in /home/u604108565/domains/forextradingcommunity.com/public_html/wp-includes/class-requests.php on line 24

    [23-Dec-2023 08:44:10 UTC] PHP Deprecated: Function get_page_by_title is deprecated since version 6.2.0! Use WP_Query instead. in /home/u604108565/domains/forextradingcommunity.com/public_html/wp-includes/functions.php on line 6031

    [23-Dec-2023 11:32:30 UTC] PHP Deprecated: urldecode(): Passing null to parameter #1 ($string) of type string is deprecated in /home/u604108565/domains/forextradingcommunity.com/public_html/wp-content/plugins/litespeed-cache/src/control.cls.php on line 547

    [23-Dec-2023 11:55:40 UTC] PHP Deprecated: Constant FILTER_SANITIZE_STRING is deprecated in /home/u604108565/domains/forextradingcommunity.com/public_html/wp-content/plugins/bbp-style-pack/includes/settings_import.php on line 16

    [23-Dec-2023 12:55:50 UTC] PHP Deprecated: urldecode(): Passing null to parameter #1 ($string) of type string is deprecated in /home/u604108565/domains/forextradingcommunity.com/public_html/wp-content/plugins/litespeed-cache/src/control.cls.php on line 547

    [23-Dec-2023 14:04:20 UTC] PHP Warning: file_put_contents(): Exclusive locks may only be set for regular files in /home/u604108565/domains/forextradingcommunity.com/public_html/wp-content/plugins/bbp-style-pack/includes/generate_css.php on line 165

    [23-Dec-2023 14:34:05 UTC] PHP Deprecated: Automatic conversion of false to array is deprecated in /home/u604108565/domains/forextradingcommunity.com/public_html/wp-content/plugins/google-analytics-for-wordpress/includes/admin/notification-event-runner.php on line 94

    [24-Dec-2023 11:48:54 UTC] PHP Warning: Attempt to read property “name” on bool in /home/u604108565/domains/forextradingcommunity.com/public_html/wp-admin/nav-menus.php on line 1215

    [24-Dec-2023 11:48:54 UTC] Cron reschedule event error for hook: action_scheduler_run_queue, Error code: invalid_schedule, Error message: Event schedule does not exist., Data: {“schedule”:”every_minute”,”args”:[“WP Cron”],”interval”:60}

    [24-Dec-2023 11:49:58 UTC] Cron reschedule event error for hook: better_messages_cleaner_job, Error code: invalid_schedule, Error message: Event schedule does not exist., Data: {“schedule”:”better_messages_cleaner_job”,”args”:[],”interval”:300}

    [24-Dec-2023 11:51:55 UTC] PHP Deprecated: Function get_page_by_title is deprecated since version 6.2.0! Use WP_Query instead. in /home/u604108565/domains/forextradingcommunity.com/public_html/wp-includes/functions.php on line 6031

    [24-Dec-2023 13:03:21 UTC] PHP Warning: mysqli_real_connect(): (HY000/1130): Host ‘127.0.0.1’ is not allowed to connect to this MariaDB server in /home/u604108565/domains/forextradingcommunity.com/public_html/wp-includes/class-wpdb.php on line 1987

    [24-Dec-2023 13:05:23 UTC] PHP Warning: Attempt to read property “name” on bool in /home/u604108565/domains/forextradingcommunity.com/public_html/wp-admin/nav-menus.php on line 1215

    [24-Dec-2023 13:05:29 UTC] PHP Warning: Attempt to read property “name” on bool in /home/u604108565/domains/forextradingcommunity.com/public_html/wp-admin/nav-menus.php on line 1215

    [24-Dec-2023 13:05:31 UTC] PHP Warning: Attempt to read property “name” on bool in /home/u604108565/domains/forextradingcommunity.com/public_html/wp-admin/nav-menus.php on line 1215

    [24-Dec-2023 13:42:33 UTC] PHP Deprecated: Function bp_core_get_user_domain is deprecated since version 12.0.0! Use bp_members_get_user_url() instead. in /home/u604108565/domains/forextradingcommunity.com/public_html/wp-includes/functions.php on line 6031

    #332249

    In reply to: BuddyPress 12.0.0

    dangbird
    Participant

    So I tried the BP Classic Plugin and no changes. Did a bunch of testing and IF a notification has NOT been read or dismissed for ANY user, they can see the normal front end of the Website fine/all works as before. HOWEVER if any user dismisses or deletes any notification then they get a blank web page with just our header and the BP Icons, with no console errors etc.

    So having a Notification or NOT having a notification is the trigger for the Theme failing.
    Installing BP Classic made not change.

    That said, I am likely not understanding the thread you provided or how the update worked. Rolled to 11.4 all well again. Appreciate the support, and a fantastic plugin.

Viewing 25 results - 1 through 25 (of 695 total)
Skip to toolbar