Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'wordpress'

Viewing 25 results - 1,151 through 1,175 (of 22,644 total)
  • Author
    Search Results
  • cmikel
    Participant

    Found this plugin that worked for me:

    Wbcom Designs – BuddyPress Activity Filter

    #317882
    michaelsandmichaels
    Participant

    I just installed BuddyPress 7.2.1 on a development site running Elementor 3.1.4 and Elementor Pro 3.2.0 on WordPress 5.7. I discovered that BuddyPress causes the Elementor editor to hang when you attempt to edit an element. Deactivating BuddyPress immediately restored standard functionality. I am also running bbPress 2.6.6 and have had no issues with that. I had already configured a number of BuddyPress group forums and was really looking forward to using it, but this is a deal-breaker if I can’t use the Elementor editor! I really hope the conflict can be resolved as we’re hoping to go live with the site soon. I can share the url and answer questions in more detail if we are able to continue this conversation offline. Let me know how to submit a support ticket or email support if so. Thank you!

    #317874
    erotmil
    Participant

    Running latest wordpress 5.7 php 7.4 BP Group Documents 1.12.3 buddypress 7.2.1
    tried twenty twenty theme, tried deactivating plugins. running Divi theme with a child them
    with custom PDO crud code in child theme for some functions.
    any of the documents on documents/?category=# pages draw a blank page.
    I used duplicator to reinstall and old backup copy and even it draws the blank.
    So I wondering if there is some external reference that changed or moved (like a JS library).
    This happened with the last two weeks (today is 3/28/2021) .
    Also noticed the Divi’s front end editor doesn’t work on those blank pages.
    Gonna submit a Divi tech support ticket also.
    my test website for troubleshooting is
    http://airvacrepair.com/groups/asc-documents/documents/?category=57&order=newest
    that’s the link that draws a blank (no documents showing)?
    Any help appreciated

    #317824
    julesrutherford
    Participant

    Hi there, non-developer here. I have created a group and have added a member as admin when I was in wordpress. I want members to be able to discover groups and request to join. I realise that Groups in the profile menu is there to access groups you’re a member of but where can members brows/discover groups that might be of interest to them?

    #317809
    fatdogstudios
    Participant

    Hi,

    We’re hoping to have email notifications sent if there is activity on a BuddyPress thread someone has commented in.

    For example, I’d like to receive an email notification when I post on someone’s thread and they respond. (Kind of like the “notify me of follow up replies via email” check box I’m seeing beside the submit button below.)

    Hoping someone has some insight, plugin or php that can help with this.

    We’re running WordPress 5.7, BuddyPress 7.2.1

    Thank you!

    #317772
    shanebp
    Moderator

    > This requires that the site admin be able to add a validated member without the user log in.

    So they can make the payment without signing up as a WordPress user on your site?
    If they don’t have a login name, then they don’t have an ID and cannot be added to a group – by any method.

    If they do have a WP login name, then you can add them in wp-admin.
    Go to Groups, mouse-over a Group Name and click Edit.
    On the Edit screen you will see this section: Add New Members.

    #317756
    Venutius
    Moderator

    Hi Reiner, I’ve got two options for you. Firstly I’ve built this into a plugin of mine – BP Messaging Control – https://wordpress.org/plugins/bp-messaging-control/

    So that’s the easy option.

    The alternative is to add this code to your functions.php file in your child theme folder:

    function venutius_user_deletion_notify( $user_id ) {
    	
    	$site_admin_email = get_option( 'admin_email' );
    	$userdata = get_userdata( $user_id );
    	$subject = __( 'User deleted', 'bp-messaging-control' ) . ': "' . $userdata->user_login . '"';
    	$message = __( 'A user has been deleted.', 'bp-messaging-control' );
    	$message .= "\r\n\r\n";
    	$message .= __( 'User Name', 'bp-messaging-control' ) . ': ' . $userdata->user_login . "\r\n";
    	$message .= __( 'User ID', 'bp-messaging-control' ) . ': ' . $user_id . "\r\n";
    	$result = wp_mail( $site_admin_email, $subject, $message );
    	
    }
    add_action( 'bp_core_pre_delete_account', 'venutius_user_deletion_notify', 10 );
    roberto.vergallo
    Participant

    Hello,
    I use version 7.2.0 . WordPress version 5.5.3 . Website address https://www.corsetty.it/ .
    Please try this. Post an activity in a group. Then write a comment to the activity. Everything is ok, until you write a comment to the above comment (i.e. a comment to the comment). This makes the 1st level thread disappear.
    I’ve seen what happen in the database. The problem is with the mptt left and right fields in the wp_bp_activity table.
    Is this a bug? Please it is very urgent.
    Thank you,
    Roberto

    #317737
    shanebp
    Moderator

    I think you can do that with a WP filter

    add_filter( 'wp_mail_from', 'custom_wp_mail_from' );
    function custom_wp_mail_from( $original_email_address ) {
        //Make sure the email is from the same domain 
        //as your website to avoid being marked as spam.
        return 'webmaster@mydomainname.com';
    }

    wp_mail_from

    #317718
    varkoff
    Participant

    I have that exact same problem with a custom theme. Tried switching back to wordpress theme and disabling all extensions. It did not work.

    #317714
    Mathieu Viet
    Moderator

    Hi @mike80222

    By default just like the WordPress REST API, the BuddyPress one is active by default and is used into the UI to manage group members from the Group’s Administration & Management screens. If you want to disable the BP REST API, you need to use this filter into a bp-custom.php file for example:

    add_filter( 'bp_rest_api_is_available', '__return_false' );

    #317710
    Mike Witt
    Participant

    The buddypress rest api is not installed automatically (like the wordpress api) right?

    So if I haven’t specifically installed the BP REST API then I can just update normally in my next scheduled site maintenance, correct? Just checking.

    #317702
    Venutius
    Moderator

    Hi Akstar,

    Existing users will become BuddyPress users, however their BP profile information will be blank, ideally you’d add some code to force them to complete any extra items you have added such as https://github.com/buddydev/bp-profile-completion.

    That’s pretty much the only difference.

    Another feature you may want to think about is if you want the BuddyPress pages to be public or only available to logged in users. For that you would need a plugin, such as https://wordpress.org/plugins/lh-private-buddypress/

    Other than that it would be case of enabling the BP features you want for your site.

    #317693
    Raakesh
    Participant

    Hello @venutius,

    Thanks for the immediate response,

    As per you’re guidance I’ve found the issues via “Inspect Element” then select “Console” and found the below error :

    This request has been blocked; the content must be served over HTTPS.

    So I’ve installed SSL Insecure Content Fixer Plugin and select HTTP_X_FORWARDED_PROTO (e.g. load balancer, reverse proxy, NginX) in the settings.

    Now it’s working fine all my issues are fixed.

    Thanks for the great guidance @venutius. You’re a superman.

    Regards,
    Raakesh V.

    #317639
    Raakesh
    Participant

    Hello,

    I’m using the latest version of buddypress and wordpress. Unfortunately add friend, new post are not working its loading…..continuously . I’m using Nouveau template.
    I’ve did everything rollback to older versions of theme and plugins nothing happened. Also deactivated all plugins, Change to legacy I did everything, nothing happened.

    Please help me to fix it.

    #317637
    sasasasaaa
    Participant

    I use latest WordPress and latest Buddypress version

    #317623
    okada0309
    Participant

    wpdb :: prepare was called incorrectly. The query required only one placeholder, but an array of multiple placeholders was submitted. See Debugging WordPress for more information. (This message was added in version 4.9.0)

    I get an error on the “activity/favorites/” page. I disabled some plugins but it didn’t improve. What is the cause?

    r083r7
    Participant

    Hello, I’m trying to troubleshoot this error message I received in my admin inbox from my website I got after installing the Groups plugin. Any idea on where to start?

    Groups

    When seeking help with this issue, you may be asked for some of the following information:
    WordPress version 5.7
    Current theme: REIGN Child (version 3.0.0)
    Current plugin: BuddyPress (version 7.2.0)
    PHP version 7.3.27

    Error Details
    =============
    An error of type E_ERROR was caused in line 101 of the file /home/website/public_html/sa111.com/wp-content/plugins/buddypress/bp-groups/bp-groups-cache.php. Error message: Uncaught ArgumentCountError: Too few arguments to function bp_groups_clear_group_creator_cache(), 1 passed in /home/website/public_html/sa111.com/wp-includes/class-wp-hook.php on line 292 and exactly 2 expected in /home/website/public_html/sa111.com/wp-content/plugins/buddypress/bp-groups/bp-groups-cache.php:101
    Stack trace:
    #0 /home/website/public_html/sa111.com/wp-includes/class-wp-hook.php(292): bp_groups_clear_group_creator_cache(‘2’)
    #1 /home/website/public_html/sa111.com/wp-includes/class-wp-hook.php(316): WP_Hook->apply_filters(”, Array)
    #2 /home/website/public_html/sa111.com/wp-includes/plugin.php(484): WP_Hook->do_action(Array)
    #3 /home/website/public_html/sa111.com/wp-content/plugins/groups/lib/core/class-groups-group.php(308): do_action(‘groups_created_…’, ‘2’)
    #4 /home/website/public_html/sa111.com/wp-content/plugins/groups/lib/admin/groups-admin-groups-add.php(155): Groups_Group::create(Array)
    #5 /home/website/public_html/sa111.com/wp-content/plugins/groups/lib/

    karencheah
    Participant

    Hi, I’m new to BuddyPress and would like to know how to add a field (Prefix) to the name as displayed on the member directory page.

    Wordpress version: 5.7
    BuddyPress version: 7.2
    Site: https://csdaustralia.com

    I’m using the Nouveau template pack. I have already created a child theme and have been experimenting with members-loop.php and index.php. Not sure if I’m looking at the correct place.

    Any advice much appreciated. Thanks in advance.

    #317606
    iamthewebb
    Participant

    You can use ftp or the hosts file manager to rename the buddypress folder which will disable the plugin, I’ve never uninstalled manually so can’t advise on further steps.

    Standard themes are those supplied with wordpress, twenty nineteen, twenty twenty, etc.

    guidoj
    Participant

    Hello, 4 years after this posts, I still have this error message. Does in the meantime anyone have a workaround? WordPress 5.7 (was the same in previous version). Buddypress 7.2.0.

    Error message:
    bp-plupload.min.js?ver=7.2.0:1 Uncaught TypeError: Cannot read property ‘add’ of undefined
    at addFile (bp-plupload.min.js?ver=7.2.0:1)
    at r (lodash.min.js?ver=4.17.19:9)
    at Function.hf (lodash.min.js?ver=4.17.19:83)
    at n.initialize (bp-plupload.min.js?ver=7.2.0:1)
    at n.h.View (backbone.min.js?ver=1.4.0:2)
    at n.constructor (wp-backbone.min.js?ver=5.7:2)
    at n [as constructor] (backbone.min.js?ver=1.4.0:2)
    at new n (backbone.min.js?ver=1.4.0:2)
    at Object.uploadProgress (avatar.min.js?ver=7.2.0:1)
    at p (backbone.min.js?ver=1.4.0:2)

    deedee10
    Participant

    Good afternoon

    I received a fatal technical error last Thursday on my site while working with your plugin. The technical team that I am hosting with has since advised me to contact Buddy press as the error occurred with your plugin and is taking up my disk allocation on the domain.

    These are the details provided to me.

    the plugin generates errors due to the template:
    PHP Warning: next() expects parameter 1 to be array, null given in /home/g0xbb53gf/public_html/wp-content/plugins/buddypress/bp-core/bp-core-template-loader.php on line 311 .
    These errors end up creating a huge error log file, which occupies the entire disk allocated for your domain.

    I am currently using WordPress 5.6.2 and Buddy Press 7.2.0. I am also using Astra 3.1.2. I will really appreciate your urgent assistance as I am unable to continue modifying my site.

    forwardprogress
    Participant

    I noticed that my wordpress users aren’t showing as buddypress “members”… and actually they haven’t been syncing for quite a while.

    Any idea why my WP users aren’t syncing to Buddypess “members”?

    I updated all plugins, themes, etc and even disabled all plugins except Buddypress, then created a new wordpress user and that user is still not showing in Buddypress “Members” page.

    I next checked to make sure that the Buddypress setting is turned on, “Enable BuddyPress to WordPress profile syncing” and that was already turned on.

    Any ideas what could be causing my users to not show in Buddypress?

    BP Version: 7.2.0
    WP Version: 5.6.2
    PHP Version: 7.3
    Members Page: https://sciacademy.socialjack.com/members/

    r083r7
    Participant

    I have a forum that is linked to a group. I go to that group and view the forum inside of it.

    I am trying to remove the name of the forum on the index page that lists all the topics. I used CSS to remove it but it’s not working right.

    #bbpress-forums h2 {
    display: none;
    }

    This removes the title as I want but when I click on any topic it also removes the posters question 🙁

    Please review the screenshots I took

    Index page with the forum title
    https://monosnap.com/file/tKb4Y6GEkWf2GUMB88ghljeprh37Nt

    A topic page with topic question
    https://monosnap.com/file/M3hhJhX7wW4on9Ym2s4ecMcFqmjHOj

    Does anybody know how to remove just the forum name when viewing the forum inside of a group?


    Using latest versions of WordPress and BP.

    #317565
    patalgar
    Participant

    Hi everyone,

    I am using buddypress and extra functions were added using plugins and child theme.
    Buddypress version 6.3.0
    Wordpress version 5.5.3

    I observed that from frontend user accounts, if they change custom field visibility, the field value is deleted from the database table “bp_xprofile_data”. It happens in several ways, for example changing from adminsonly to public and also from public to adminsonly.

    The function used for editing visibility is ” bp_nouveau_xprofile_edit_visibilty() ” in the edit.php file of the child theme.

    I would like to know if this is the normal behaviour and if there is a way to maintain the data?

    Thanks for your help 🙂

Viewing 25 results - 1,151 through 1,175 (of 22,644 total)
Skip to toolbar