Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 4,726 through 4,750 (of 68,986 total)
  • Author
    Search Results
  • Venutius
    Moderator

    So it’s the activity not posting that’s the issue not the filters. I think in the first instance I’d deactivate all other plugins, switch to a default theme such as 2017 and add another user, see if that shows up in activity. I’d also check if you’ve set up any filters for the activity loop that might exclude that content.

    For new posts and comments you’d need to check that site tracking was enabled in the BuddyPress Component settings.

    shanebp
    Moderator

    > … then why would BuddyPress not be the issue?

    I’m saying that it is unlikely – not impossible.
    Remember that plugins usually include hooks that other code or plugins or themes can use to inject code, behaviours etc.
    So BP may be the issue. Or the issue may only manifest with BP.

    As I said, I’ve never seen this issue before.
    I’m not going to buy the Eduma theme so I can test with it.
    You are not my customer. You are a person having an issue with an open source codebase.
    I am a volunteer and curious about your issue and willing to make suggestions about narrowing down the cause in the hope of clearing identifying a bug.
    Since you do not want to proceed, I wish you all the best with your project.

    #305852
    Venutius
    Moderator

    Are you using Akismet or some other spam blocking plugin? Also Topics are forums related, BuddyPress does not include forums, for those you’d be better off asking on that plugins forums.

    fatboyslim1
    Participant

    I have used this code here:

    https://codex.buddypress.org/developer/loops-reference/the-members-loop/

    and I want to filter users by certain criteria. The example for the bp-custom page is:

    function my_custom_ids( $field_name, $field_value = '' ) {
    
      if ( empty( $field_name ) )
        return '';
    
      global $wpdb;
    
      $field_id = xprofile_get_field_id_from_name( $field_name ); 
    
      if ( !empty( $field_id ) ) 
        $query = "SELECT user_id FROM " . $wpdb->prefix . "bp_xprofile_data WHERE field_id = " . $field_id;
      else
       return '';
    
      if ( $field_value != '' ) 
        $query .= " AND value LIKE '%" . $field_value . "%'";
          /* 
          LIKE is slow. If you're sure the value has not been serialized, you can do this:
          $query .= " AND value = '" . $field_value . "'";
          */
    
      $custom_ids = $wpdb->get_col( $query );
    
      if ( !empty( $custom_ids ) ) {
        // convert the array to a csv string
        $custom_ids_str = 'include=' . implode(",", $custom_ids);
        return $custom_ids_str;
      }
      else
       return '';
    
    }

    Example Usage: Get all members who have filled out the xprofile field ‘dogs’ and selected the value ‘poodles’.

    <?php if ( bp_has_members( my_custom_ids( 'dogs', 'poodles' ) ) ) : ?>

    How do I add more conditions to the dogs/poodles. What If I also want ‘birds’, ‘parrot’ as well as ‘dogs’, ‘poodles’ ?

    issaquahtechacademy
    Participant

    If I de-activate BuddyPress, then everything is fine. If this is the case, then why would BuddyPress not be the issue? If it is your determination that BuddyPress is having an issue with some other plug-in, then why would you be asking me, your customer, to debug this for you. I would think that you would want to spin up a quick test site, apply the Eduma theme, and then debug the issue from your end.

    I’ll just leave this and not worry about it. If other customers run into the same problem, or if that problem starts to spread into other areas, then maybe enough angry customers will draw the attention to get this fixed. I’m not going to debug this for you.

    #305831

    In reply to: Email Activation

    shanebp
    Moderator

    also – have you tried disabling BP Email ?

    Emails will then be sent via the WP Email code.

    shanebp
    Moderator

    Bizarre… I’ve never seen a similar report.
    You’ll need to take some big swings at this.
    Try deactivating everything but BuddyPress and use a WP theme like 2019.
    Then start activating plugins one at a time and testing for the issue.

    issaquahtechacademy
    Participant

    After deactivating BuddyPress, the issue goes away. When I activate BuddyPress, the issue returns.

    shanebp
    Moderator

    It is very highly unlikely that the issue stems from BuddyPress.
    BuddyPress does not touch comments on posts in wp-admin.
    We are trying to help you narrow down possible causes.
    Did you try deactivating BuddyPress and then test for the issue again?

    issaquahtechacademy
    Participant

    Also, I don’t see how that URL can’t be found. I’m sitting on it right this second and here is the lower part of the text…

    Please try again and please follow these repro steps…

    Log into the site /wp-admin using the credentials I provided to you
    Go to the LearnPress menu item
    Click on Lessons – NOT Courses…Lessons (as I put it in the original issue)
    Click on Download and Install the Eclipse IDE
    Scroll down to the Add comment button and click the button

    Now try to add a comment

    I just did it again and it is broken

    The same issue will happen if you try
    Download and install the Java JRE or any other lesson

    May 13, 2019 at 2:32 PM #437118REPLY

    Huyen Anh

    Keymaster
    Dear jbonifacejr,

    I’m checking it.

    Best regards,

    Huyen Anh

    May 14, 2019 at 1:54 PM #437684REPLY

    Huyen Anh

    Keymaster
    Dear jbonifacejr,

    We checked and the reason is due to BuddyPress plugin.

    With this, please contact with the main author of BuddyPress plugin. Hope they can help you solve this issue.

    Best regards,

    Huyen Anh

    May 14, 2019 at 8:07 PM #437869REPLY

    jbonifacejr

    Participant

    Can you be a little more specific as to what the problem is, so that when I reach out to them, I can provide them some guidance? What did you discover when you looked that makes you think it is BuddyPress?

    issaquahtechacademy
    Participant

    I have already opened a ticket with Eduma and they investigated and told me the issue is with BuddyPress. I have reached out to them to get clarification on exactly what they learned, but while I am waiting for a reply, I would go on the assumption that they have investigated and they may be correct. Here is the thread with them…

    https://thimpress.com/forums/topic/adding-comments-in-admin-mode-writes-the-comments-in-reverse/

    You can clearly see that they have told me that BuddyPress is the issue.

    #305807
    rgilman
    Participant

    Done. Ticket #8094

    warrencat
    Participant

    Thank you for the suggestion. Here is what I did, as well as the results.

    All of the current extended profile fields were data being synced using the NADI add-on. I created a new text field to test with in the Base (Primary) field group and configured it the same: Required, “Only Me” visibility and Enforce field visibility selected. I edited an existing user profile, added some text to this new field and saved the profile.

    I viewed the profile as an admin and could see both fields – the original and the new test field – that should be hidden. All good there. I switched to a subscriber account and reloaded the profile and both the original and new test fields no longer displayed.

    This leads me to think there is an issue with the process of adding data to the extended BuddyPress profile fields using a sync process that somehow ignores the Field Visibility element, but that is corrected when the profile is manually updated.

    Regarding PHPMyAdmin, this site is installed on an internal company server and, as such, I don’t have PHPMyAdmin or any similar tool at my disposal to be able to easily look in on the database tables, unfortunately. But knowing which table has this data in it will be helpful as I work with my IT support on any further analysis/diagnosis.

    warrencat
    Participant

    In the extended profile fields, I’ve created a field that automatically pulls in data using the process described further below. This field is required and is located in the Base (Primary) group of profile fields.

    The issue I’ve run into is that I’ve configured the field to be visible to “Only Me” and have selected the option to Enforce field visibility, but when I look at the public-facing profile page, this field is still visible to any other logged in user, regardless of role. (I have confirmed this by logging in with a subscriber level account and viewing the profile page.)

    The profile fields data import process:

    I am using the NADI plugin (https://active-directory-wp.com/) to automatically create and sync users and user data from company Active Directory database. This plugin has an add-on tool that will subsequently sync selected data from the user WordPress profile over to the BuddyPress profile.

    Troubleshooting steps I’ve already completed:

    1. I’ve deactivated all plugins other than BuddyPress; the “Only Me” profile is still visible on the public-facing user profile page for any logged in user. It doesn’t appear to be caused by a plugin conflict.
    2. I’ve changed to a default WordPress bundled theme; again, the “Only Me” profile is still visible on the public-facing user profile page for any logged in user. It doesn’t appear to be caused by a theme conflict.

    WP Version: 5.2
    BP Version: 4.3.0
    NADI Plugin Version: 2.1.9 (Up to date)
    NADI Add-on Version: 1.0.4 (Up to date)

    I hope I’ve provided enough information. I’m struggling to determine why this profile field that should only be visible to the person who is logged in and no else is visible to every user. I also hope someone here might have a suggestion or recommendation for what I might try next.

    Thanks.

    #305801
    Tristan
    Participant

    I used to be able to find themes for Buddypress quick and easy. Now I’m having trouble finding anything. Where can I find a decent, free theme?

    Thank you!

    #305799

    In reply to: Request: comment Icon

    shanebp
    Moderator

    Those icons are not part of BuddyPress, afaik.
    They are part of your theme or some other plugin.
    Find out where they are coming from and either replace them on your own or discuss it with the icon creators.

    #305797
    maklin
    Participant

    I have my website through a hosting company. Latest version of WordPress and Buddypress. When I preview a theme, Profile works fine. When I accept and publish, profile shows up as a blank page with just the word profile and an edit link.

    Groups seem to also work in preview mode. Once published I cannot create a new one with forum, step 3 takes me to the forum list and does not proceed. Attempting to enter a group forum does not allow me in, I end up on the main forum page..

    My install of WP is fairly new, Jan 2019. I have tried disabling every plugin except bbpress and buddypress. Uninstalled and reinstalled Buddypress. I am running no redirects of any kind. Anyone out there experienced this and found a fix they could share?

    #305793
    ayoleyi
    Participant

    Thank you for your responses.


    @Venutius
    , the problem stops as soon as I deactivate BuddyPress.

    Chris, indeed I’m using the BP Registration Options Plugin. Kindly share the fix.

    Thank you.

    allnamestaken
    Participant

    sorta solved it by using buddyprofile data and BuddyPress Xprofile Custom Field Types

    zsujoker
    Participant

    Dear Buddypress Folks,

    I am using WP (5.1.1, Buddypress 4.3.3, php 7.0, KLEO newest release)
    My registration page (with or without the kleo_register shortcode does not load properly). It says there are too many redirects or it redirects to the home page. It also says it might be because of rejected cookies.

    It was working properly previously. It might have gone wrong with the latest updates (kleo, buddypress or wp). I did the wp update to 5.1 recently. That was the last update I did.

    But I do have a staging site where everything works properly. Same php, same wp, same bp, same kleo running.
    So I wonder can it be really something with the cookies?
    Here is the login page on staging site: https://tesztoldal.vegarandi.hu/regisztracio/
    Here is the login page on the live site: Site URL: https://vegarandi.hu/regisztracio

    I have created a new reg page, it does load now in Firefox. And when I hit the registration button, it gets into the redirect loop again. Also, I had a registration form with extended options, so users can accept terms an condition, I need their age etc. This extended form does not load either on the live site.

    What I have done:
    – refresh permalinks
    – checked if anyone can register
    – turned to basic WP theme
    – turned of firewall, caching plugin
    – created new reg page
    – cleaned browser cache, tried different browsers

    I am running out of ideas.
    Please help me out!

    Zsuzsa

    #305783

    In reply to: PHP critical errors

    shanebp
    Moderator

    As shown in your log, those errors come from the buddypress-followers plugin – not from BuddyPress.
    You should talk to the creators of the buddypress-followers plugin and show the error log to them.

    #305782
    Nikoi
    Participant

    Hi team,

    Is BuddyPress prepared to run properly on PHP Version 7.2.15?
    I’m getting next PHP Errors with those settings:

    WP Multisite 5.1.1
    BuddyPress: 4.3.0
    BuddyBoss Wall: 1.3.7
    BuddyPress Follow: 1.2.2

    – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – – –

    …..\wp-includes\plugin.php(465): WP_Hook->do_action(A [CRITICAL] : Uncaught Error: [] operator not supported for strings in …..\wp-content\plugins\buddypress-followers\_inc\bp-follow-notifications.php:308

    …..\wp-content\plugins\buddypress-followers\_inc\bp-follow-notifications.php(122): bp_follow_new_follow_email_notification(Array)

    …..\wp-includes\class-wp-hook.php(286): bp_follow_notifications_add_on_follow(Object(BP_Follow))
    …..\wp-includes\class-wp-hook.php(310): WP_Hook->apply_filters(”, Array)
    …..\wp-includes\plugin.php(531): WP_Hook->do_action(Array)
    …..\wp-content\plugins\buddypress-followers\_inc\bp-follow-functions.php(43): do_action_ref_array(‘bp_follow_start…’, Array)
    …..\wp-content\plugins\buddypress-followers\_inc\bp-follow-actions.php(143): bp_follow_start_following(Array)
    …..\wp-includes\class-wp-hook.php(286): bp_follow_ajax_action_start(”)
    …..\wp-includes\class-wp-hook.php(310): WP_Ho [CRITICAL] : Uncaught Error: [] operator not supported for strings in …..\wp-content\plugins\buddypress-followers\_inc\bp-follow-notifications.php:308

    Thanks.

    waynecwp
    Participant

    Hi,
    This is my first post, it’s exploratory. I’m hoping to find help with regard to a BuddyPress/Rehub install we are contemplating.
    We want to setup free and paid members. Paid member’s products visible to all members.
    So far straightforward, I hope, but where things change is that we want free member’s product to be visible only to their friends – across all product display elements, including profile page, search, directory, etc.
    I have read a little about the friends_check_friendship function and believe this can be done. Initially, I’m hoping to learn from anyone familiar with a BuddyPress/Rehub site if they imagine that creating this change to free member product visibility would be an extensive, reasonable or easy effort?
    Thank you in advance for any advice.
    1 – WordPress 5.2 running
    2 – Directory
    3 – subdirectory
    4 – ?
    5 – Yes
    6 – BuddyPress Ver 4.3.0
    7 – No
    8 – Akismet Anti-Spam, Easy WP SMTP, Health Check & Troubleshooting. Wordfence.
    9 – Standard
    10 – Twenty Seventeen, plan to use REHUB.
    11 – No
    12 – No
    13 – No
    14 – None
    15 – IONOS
    16 – Lunix, Apache
    17 – Plane to use REHUB
    18 – No
    19 – No

    #305763
    bdd
    Participant

    Thanks again. I’ll try that.

    I’ve been making some progress and getting closer. Created a new template with a copy of the member directory code, then started manipulating that.

    Tried using what’s in the “Filtering by Xprofile fields” section here to guide me:
    https://codex.buddypress.org/developer/loops-reference/the-members-loop/

    Right now I have a few errors, but I also see a link to just the one member that has a blog field filled in. (Long way to go, but feels like I’m getting to the right track.)

    #305762
    shanebp
    Moderator

    Have you tried using a filter?
    Some variation of this: https://codex.buddypress.org/emails/filter-emails/

    I have not tried it, but you could probably check some field in the $obj and then conditionally kill the email based on your needs.
    Or just use the filter to kill it.

Viewing 25 results - 4,726 through 4,750 (of 68,986 total)
Skip to toolbar