Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 2,726 through 2,750 (of 69,129 total)
  • Author
    Search Results
  • Gabe462
    Participant

    I thought it might be simple to create a static page to display the current user’s profile. I found BP_Members_Theme_Compat::single_dummy_content() returning
    /bp-nouveau/buddypress/members/single/home.php and tried to call that in my shortcode function. That didn’t work, because BP hadn’t been told which user I was looking for. I tried an experiment:

    add_filter( 'bp_get_displayed_user', function ( $user ) { 
        return ( is_null( $user ) ) ? wp_get_current_user() : $user;
    } );

    which failed. I think what I’m really needing to understand is how to actually load buddypress where it’s not already being started up.

    So I’d like to know:

      How to initialize BP in a place where it isn’t already
      a better informed approach for placing the user profile on an actual page

    Maybe someone’s already made this a plugin that I can pick apart?

    Thanks

    #316895
    Freelancealot
    Participant

    Hi,

    Thanks for your time.

    I’d rather not start loading a different theme, and if I did I would probably load a default WordPress one for testing purposes. OceanWP is said to be compatible with BuddyPress, it’s listed on the BuddyBoss site.

    I did actually start my question off with ‘Even though the Customizer settings are set to Horizontal for both Group and Profile, the member and group directory pages are still showing with the nav vertical.” So your video link does not help.

    Would love to get this sorted out.

    Cheers,
    Tracy

    #316894
    wbcomdesigns
    Participant

    @freelancealot You can test the same with the BuddyX theme it have dedicated support for BuddyPres and bb.
    Meanwhile, you can also check the Customizer setting
    Customizing >> BuddyPress Nouveau >> Member navigation

    https://www.awesomescreenshot.com/video/2526315?key=100e379800d6b704907b7e0e5f40567a
    above screencast using BuddyX theme

    #316888
    shanebp
    Moderator

    Not sure what your issue is, but for reference this plugin adds a profile nav & subnav to nouveau:

    BuddyPress Simple Events

    btw – good to see you on here again.

    r083r7
    Participant

    I am trying to hide content from all users on my site unless they are friends. So for example I want to have a custom tab that has content on it. The tab/content is only visible to other BuddyPress users that I am friends with and have approved their connection. Is there a way to do that?

    I’m hoping BuddyPress has some sort of permission structure to facilitate something like that.

    #316877
    dannyleedawber
    Participant

    Hey I’m creating a social media website called The Social Crew and I’m wondering is it possible to have the activity feed showing only what the user follows with the plugin BuddyPress Follow

    Freelancealot
    Participant

    Hi,

    Even though the Customizer settings are set to Horizontal for both Group and Profile, the member and group directory pages are still showing with the nav vertical.

    I’m using:

    Wordpress 5.6
    BuddyBoss Version 1.5.6 (free platform) with nouveau templates
    OceanWP v2.0.2 (theme)

    I don’t know if this would effect anything, but I originally installed Buddypress and then changed to Buddyboss. So I’m not sure if there could be any ghost settings somewhere in the db? I tried creating a brand new WP page and set that up as the Page to use but still insisting on going vertical.

    Looking at the source code something somewhere is inputting the classes for the vertical navigation. The only similar thing I could find was this thread: https://buddypress.trac.wordpress.org/ticket/7799 but it isn’t any help.

    Horizontal navs are working on the other Buddyboss nouveau template pages.

    I tried to get around it by using the [profile type=””] shortcode on a WP page but that doesn’t include the search and filter component.

    So my question is: How do I stop Buddyboss/buddypress from insisting on vertical nav?

    If that’s not possible, for whatever reason then how can I use the profile shortcode on a WP page that includes the search and filter and the grid/list toggle? I’d be interested to know this anyway as would like to create separate pages for certain profile types.

    The site is for registered users only but the link is https:// conference.bafa.ac.uk/

    Please be gentle, this is my first delve into Buddypress/BuddyBoss.

    Cheers,
    Tracy

    #316875
    iamthewebb
    Participant

    Hi, Youzer heavily customizes BuddyPress so you will likely need to contact their support while this plugin is activated. The js file you mention above is also one of theirs as you can see from the yz initials at the beginning of the file name.

    #316873
    Tim
    Participant

    Hi,
    When we try to Post we get this error and button spins forever without doing anything because it is a fatal “Uncaught ReferenceError” and points to script yz-wall-form.min.js?ver=2.6.2:formatted:64

    Buddypress 7.1.0
    Youzer 2.6.2
    Wordpress 5.5.3
    Using BeTheme
    Hosting: WPEngine

    Screenshot of console…
    01.25.2021-12.38.00

    Any ideas?
    -Tim

    Nahuai Badiola
    Participant

    Hi,

    I’m starting to use the BuddyPress Nouveau template an I noticed that not all the Private Messages are displaying (on /messages/).
    In this case only the last 12 messages are displayed and there is no pagination.
    I didn’t find any setting to change it (if there is any).

    If I rollback to the legacy template I can see all the messages (+100) and the pagination to move around.

    I’m I missing something?

    Thanks!
    Nahuai

    homelesshenry
    Participant

    I’ve followed the guide at:

    Post Types Activities

    And I’ve made woocommerce products appear in the activity stream via the code below:

    <?php
    
    add_post_type_support( 'product', 'buddypress-activity' );
     
    function customize_page_tracking_args() {
        // Check if the Activity component is active before using it.
        if ( ! bp_is_active( 'activity' ) ) {
            return;
        }
     
        bp_activity_set_post_type_tracking_args( 'product', array(
            'component_id'             => buddypress()->blogs->id,
            'action_id'                => 'new_product_page',
            'bp_activity_admin_filter' => __( 'Published a new product', 'custom-domain' ),
            'bp_activity_front_filter' => __( 'Pages', 'custom-domain' ),
            'contexts'                 => array( 'activity', 'member' ),
            'activity_comment'         => true,
            'bp_activity_new_post'     => __( '%1$s posted a new <a href="%2$s">product</a>', 'custom-textdomain' ),
            'bp_activity_new_post_ms'  => __( '%1$s posted a new <a href="%2$s">product</a>, on the site %3$s', 'custom-textdomain' ),
            'position'                 => 100,
        ) );
    }
    add_action( 'bp_init', 'customize_page_tracking_args' );
    
    ?>

    What I’m trying to do is make it so the Product Post Title appears hyperlinked instead of a static word (in this case, “Product”):

    'bp_activity_new_post' => __( '%1$s posted a new <a href="%2$s">product</a>', 'custom-textdomain' ),

    I don’t know PHP, so I thought I might be able to just jam something similar I’ve found to replace that line of code, such as:

    sprintf( __( '%1$s created a new Product post, %2$s', 'buddypress' ), bp_core_get_userlink( (int) $post->post_author ), '' . $post->post_title . '' );

    Unfortunately, that doesn’t work.

    #316826
    Berk TOKEL
    Participant

    I use a social networking platform via buddypress on my website. I want to add google ads under member events. I used the advanced ads ad plugin. I got a successful result. Is it possible to handle this with a few codes? For example, I want an advertisement at the end of the 1st post and then repeat it in 5 posts. Have someone to Install Assistant?

    Website: https://www.joomdo.com
    Wordpress version: 5.6
    Old buddypress selected in buddypress settings.

    #316821
    metame
    Participant

    Thanks for that link, but I already have been through this, and identified the proble as the Buddypress plug in, hence my reaching out to Buddypress.

    #316820
    iamthewebb
    Participant

    Have you installed and activated bbpress as per https://codex.buddypress.org/getting-started/installing-group-and-sitewide-forums/ ?
    It’ll add the settings page to the Dashboard but there won’t be a tab within the buddypress settings.

    jswiss
    Participant

    Hi there,
    here’s an interesting issue for which we could use thoughts from all of you.
    The problem is buddypress. That is, a “FORUMS” Tab is not showing up in wp admin backend. – Pls see attachments.

    I believe there should be a “forums” tab in the backend, but it isn’t there.

    I have newest vers of buddypress. Have installed and deactivated, deleted plugin and reinstalled.
    Have deactivated ALL plugins and tested – No luck, the “Forums” tab is simply not there.

    We’re using divi child theme and have tried default theme. Still no luck…

    https://goto.network/canadaclub/wp-content/uploads/2021/01/no-forums-link-2.png

    https://goto.network/canadaclub/wp-content/uploads/2021/01/no-forums-link-1.png

    Any advice greatly appreciated

    #316813
    iamthewebb
    Participant

    Indeed there is, imath has created a patch which will likely be in the next release https://buddypress.trac.wordpress.org/ticket/8425
    I’m not sure when that is scheduled for release but the patch should show the changes required if you wish to make them temporarily yourself.

    metame
    Participant

    I have just started to get a message on updraft
    “Warning: Your WordPress installation has a problem with outputting extra whitespace. This can corrupt backups that you download from here.”
    I have identified the issue arises with Buddypress plug in. I have deleted and reinstalled Buddypress, but not change the issue.
    Is there a fix for this please?
    Thanks Grahame
    tested with theme twenty nineteen and twenty twentyone.
    Current theme Customizr Pro
    website http://www.horshamartists.org
    Buddypress Version 7.1.0
    Updraft Version 1.16.46
    wordpress 5.6

    #316801
    uwcnyig36
    Participant

    Hello!

    I have a question about groups.
    I searched for this question and did not find any matching questions.

    I’m also new to wordpress/buddypress, so please bear with me 🙂

    Here is my site https://uwcnorthyork.ca/
    WordPress version: 5.4.2
    BuddyPress version: 2.3.0

    My question is:
    When a user requests permission to join a group, is there a way to get an email sent to the moderator of that group, (so they can accept them)?
    Right now the email goes to the site admin (me) which is ok, but its important that it goes to the moderator as well. If it can only go to one of these, then I would like it to be the moderator.

    Any help would be appreciated.

    #316798
    lilipilon
    Participant

    After hours searching, i find a solution:
    https://buddypress.org/support/topic/bad-link-to-profile-edit/

    Registration and Edit Profile Issue

    I try to modify by the snippet code but it doesn’t work.
    I ask to ovh to access to my database.

    i hope it will work

    #316797
    lynnapp
    Participant

    So this happen on the profile pages, and on multiple servers and multiple sites. For my site I have no error messages I think that buddypress still does not load the profile page with ajax. So when you click a link like settings it does not take you back to the top of the page.

    I have added this to an ensued js file so it adds a hash tag to a div id that already existed to all the profile menu items.

    $(document).ready(function(){
    $('#object-nav').find('a[href]').each(function(){
            $(this).prop('href', $(this).prop('href')+'#item-header-content');
        });
    })

    I hope this helps someone else.

    #316776
    smgjock
    Participant

    Hello, I’m currently using bbpress 2.6.6 and buddypress 7.1.0, (wordpress 5.6, php 7.4.12, theme is siteorigin-unwind 1.6.12), and experiencing this problem as mentioned here, (members of hidden groups not being able to see the topics of the sub-forum). I’m a newbie with the background code, though my private and public groups are working. I can see the fix for ticket 7443 in buddypress.js that was indicated then, and believe I’ve implemented it, but am wondering if other people still have a problem with this, and if so if there is another fix/workaround available. Thank you.

    lilipilon
    Participant

    Hello,

    I have buddyforms and Buddypress and the extended profile.

    When I want to modify the profile on front-end :
    – if I am admin ==> I can modify all fields
    – If am the member ==> I have a blank page on modify

    So, I would like to know how to display the fields when the member connect please ?

    Is this link to user role ? To an another extension ?

    #316769
    valuser
    Participant

    are also worth looking at.

    & and if you would like to collaborate in a group to produce a document including attachments then take a look at BuddyPress Docs

    ozoceyelemeze
    Participant

    I am using a customize theme. I don’t have any custom functions in bp-custom.php. Yes I know forum support is limited where third party themes are concerned but I can’t fix it.

    here is my buddypress activity page https://www.upsozluk.com/etkinlik/
    How can I fix the gap? There is no problem in mobile version of my website, but only computers have this space problem. i am using the latest version of wordpress

    Thanks!!

    #316752
    Jens
    Participant

    That´s not possible out of the box. Did you check out plugins like rtMedia for WordPress, BuddyPress and bbPress? Buddyboss might be an option, but that´s not for free.

Viewing 25 results - 2,726 through 2,750 (of 69,129 total)
Skip to toolbar