Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 5,351 through 5,375 (of 69,044 total)
  • Author
    Search Results
  • drzoiberg
    Participant

    Hi

    I make member profile page private for everyone with this snippets in my child theme functions.php file:

    
    function remove_xprofile_links() {
        remove_filter( 'bp_get_the_profile_field_value', 'xprofile_filter_link_profile_data', 9, 3 );
    }
    add_action( 'bp_init', 'remove_xprofile_links' );
    
    function my_private_profiles() {
        if ( ! bp_is_user_profile() )
            return;
        if ( current_user_can( 'manage_options' ) )
            return;
        if ( bp_loggedin_user_id() == bp_displayed_user_id() )
            return;
        bp_core_redirect( home_url() );
    }
    add_action( 'init', 'my_private_profiles' );
    

    But I need to disable the members access to a single user front page. Can you help me?

    Thanks in advance!

    xmginc
    Participant

    Hello,

    It appears when upgrading to Buddypress Nouveau, the member directory pagination disappears and unable to make it appear.

    Is anyone else having this issue and would you mind sharing your workaround?

    I am using Woffice Theme by AlkaWeb version 2.8.x which has Nouveau support. If I move back to 2.7.x without it, the pagination reappears and all is fine.

    I have tried Buddypress settings as Legacy and Nouveau and this does not appear to help.

    Thank you all in advance!

    cheryllturcotte
    Participant

    My site has developed an issue since last updates where the friend request button no longer works. If I copy the link to a new tab it will trigger the event, but the button itself is no longer firing.

    Using BuddyPress 4.1.0, WordPress 5.0.3

    #302659
    Venutius
    Moderator

    Ah ok,

    So first of all you need a child theme, there’s plenty on plugins available that wil set one up for you.

    Next you need to know which BP Template is being used by going to Settings>BuddyPress>Options, here you will see it’s either set to Legacy or Nouveau.

    Next create a directory in your childtheme called buddypress/members/single/notifications

    Next copy the file plugins/buddypress/bp-templates/(bp-nouveau or bp-legacy)/buddypress/members/single/notifications/notifications-loop.php to the notifications you created in your childtheme.

    You can then edit this file to add your changes. in here you will find the function call I mentioned for you to add the args to.

    #302657
    Venutius
    Moderator

    Hi there, maybe these pages will help:

    Theme Compatibility

    #302652

    In reply to: Can You Help Me?

    Venutius
    Moderator

    Hi there, I don’t think BuddyPress will launch a front end post submission extension. You could raise this as a new enhancement request in Trac if you like but I’d not be very hopeful that this would be forthcoming.

    #302651

    In reply to: Registration Error

    Venutius
    Moderator
    #302650

    In reply to: Registration Error

    Venutius
    Moderator

    By the looks of things this is a bug, the WP Function get_privacy_policy_url() was introduced in WP Version 4.9.6 however the BP function bp_signup_requires_privacy_policy_acceptance() does not check for that version before trying to execute get_privacy_policy_url(). Presumably you are using a previous version of WP and so this function is throwing an undefined function error. I’ll raise a bug report for this.

    A possible fix for this is to add the following line to plugins/buddypress/bp-members/bp-members-template.php line 2421, just after the function bp_signup_requires_privacy_policy_acceptance() is declared:

    if ( version_compare( $GLOBALS['wp_version'], '4.9.6', '<' ) ) return false;

    #302645
    drstrats
    Participant

    Hi
    I’m using WP MAIL plugin to send email firstly emails from BuddyPress hasn’t been able to be sent but after I added this line of code in bp-core-functions.php
    add_filter('bp_email_use_wp_mail', '__return_true');
    the BuddyPress emails are sent successfully using the wp-mail configuration but the format changed to plain text.
    I want to restore the HTML email format while keeping the wp-mail SMTP configuration.

    I appreciate any help @djpaul

    #302635
    mrjanvier
    Participant

    Thank you for youre response,

    Do you mean with debug with 2017 theme, just to change the theme in 2017?
    I deactived all the plugin and changed in the 2017 theme. Onley the buddypress plugin is active and the problem is still there. So maybe it’s an error in buddypress itself? cause i experience it with 2 websites when i’m composing a message and use controle enter to add an person, i can’t add no more. Are there others who have the same problem?

    greetings

    msteimann
    Participant

    Hello,

    I am trying to figure out how to change/translate some BuddyPress slugs and came across this aging URL:

    Customizing Labels, Messages, and URLs

    At the bottom of the page I followed these instructions, created a bp-custom.php and copied it in wp-content/plugins:

    To change slugs on the sub nav on a member page add these defines to a file bp-custom.php and place this file in /plugins/bp-custom.php

    define( ‘BP_SETTINGS_SLUG’, ‘settings’ );
    define( ‘BP_XPROFILE_SLUG’, ‘profile’ );

    The problem is, if I change the term ‘settings’ to anything else, my profile menu completely disappears and I get a 404 warning.

    Is this code still viable? I have Buddypress and bbPress installed and using a KEO child theme. I am on a tight schedule to launch my site, so any suggestions that help me out are really appreciated.

    Regards,
    Martin

    #302632
    Varun Dubey
    Participant
    #302631
    shanebp
    Moderator

    LH BuddyPress doesn’t work normally

    What is LH BuddyPress ?
    Do you mean LH Private BuddyPress ?
    If so, you should use the support forum for that plugin.

    #302629
    drstrats
    Participant

    I couldn’t find the bp-custom.php file so, I did add it to the bp-core-functions.php file then I test to send an email through BuddyPress. It was successfully delivered by the WP mail configurations but now another problem appeared, the email delivered in plain text format showing all the Html code as plain text.

    #302627
    Varun Dubey
    Participant
    #302624
    Varun Dubey
    Participant

    @mrjanvier on your staging site, try to debug with 2017 theme and deactivate other plugins except BuddyPress to isolate the issue.

    #302623
    drstrats
    Participant

    @vapvarun thanks for your reply

    Try mailgun, easy to set up and the free plan will be enough.

    but I’m not talking about how to setup wp mail plugin because I’ve already done that.
    the problem is BuddyPress still uses the hosting server to send emails and it ignores the wp mail configuration.

    #302622

    In reply to: Buddypress not working

    Varun Dubey
    Participant

    @yahven at your site, BuddyPress pages are not mapped
    check the following link to setup them

    Configure BuddyPress

    #302619
    Varun Dubey
    Participant

    @suehanen

    You can easily add them to the menu, check out following link

    BuddyPress Links in WordPress Menus

    Inside BuddyPress section, you will find the register menu item to add inside your primary menu.

    #302617
    farmrchrys2013
    Participant

    I have BuddyPress 4.1.0 and bbPress 2.5.14 installed on a WordPress 5.0.3

    I already tried resetting the permalinks. I have not tried disabling and re-enabling all other plugins. I’m hoping it’s a simple fix.

    I am having URL Rewrite issues.
    This URL works and gets me to a page which lists all groups/my groups.
    //example.com/groups/

    For testing, I log in as a user having the wp ‘subscriber’ role who is a member of one of the private groups listed.

    I click on the group to which the user is a member and it takes me here:
    //example.com/groups/regenerative-farming-discussion/forum/

    This is good. This is where I want the user to be. But on this page, the user has the ability to see how many other members are in this group and clicking the ‘members’ button should take the user to a page that lists only the members of that group. When I hover over the members button, the URL that displays is
    //example.com/groups/regenerative-farming-discussion/members/

    but when I click on the members button, the URL I am taken to is
    //example.com/members/

    which is a page that lists ALL the members. NOT what I want.

    Similarly, if I’m logged in as a user and I go to the Members page (//example.com/members/), and I click on a member’s name, I’m taken to the member’s page:
    //example.com/members/member_name/

    I see that this member belongs to 2 groups. I want to know which ones, so I should click on the tab that says “Groups (2)” to see which two groups the person belongs to. When I hover over that tab, the URL displayed is
    //example.com/members/member_name/groups/

    but when I click on it I am taken here instead
    //example.com/groups/

    which lists all the groups. NOT what I want.

    What can I do to fix the errant rewriting of these URLs?

    #302613
    Venutius
    Moderator
    #302612

    In reply to: Buddypress not working

    Venutius
    Moderator

    Hi there,

    Have you enabled extended profiles in Settings/BuddyPress?

    If yes, deactivate the other plugins and see if that works?

    Also, try using a default theme such as 2017.

    #302607

    In reply to: whitelist user

    Venutius
    Moderator

    Hi there,

    I’m afraid post moderation is not a feature of BuddyPress. Do you have another plugin adding that feature? if so that plugin’s creator would be the one to ask. This will probably come down to the users capabilties.

    #302606
    joeco
    Participant

    How can I whitelist a user (or users) so that their posts will never be held for moderation? Is there a plugin or function available?

    I’m using the current versions of WP, buddypress, bbpress, Kleo, on a digitalocean cloud server running the latest versions of Ubuntu, nginx, and MariaDB.

    #302605
    shanebp
    Moderator

    BuddyPress does not support plain permalinks.

Viewing 25 results - 5,351 through 5,375 (of 69,044 total)
Skip to toolbar