Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 3,626 through 3,650 (of 73,312 total)
  • Author
    Search Results
  • #314873
    ronabarbanel
    Participant

    Ok, after a lot of digging, this solution worked for me:

    BP_ENABLE_MULTIBLOG

    by enabling that flag, each multisite has access to the pages needed along with the menu items.

    #314868
    ronabarbanel
    Participant

    I am having a very similar problem. Each site in my multisite needs to stay within the scope of the URL used to access the site. However, the menu items for buddypress are only available on the main site. Is there a way to have access to the menu items on each subsite that keep navigation in the scope of the subsite?

    #314865
    iamthewebb
    Participant

    Can you check https://buddypress.org/members/me/forums/subscriptions/ to see if they are listed?

    #314864
    ladalang
    Participant

    On this site. buddypress.org. And you’re getting spammed like crazy so the emails have tripled. I want to unsubscribe from everything on this website. How do I do that?

    #314856
    The Hoff
    Participant

    Hi, I have the same problem than Rob, in the buddypress settings I can open the “activate page” in a private window. The link in the regisstration email still leads into nowhere though and noone is able to take the last step regisstrating to my site automaticaly…
    Do I need to change any permalinks, etc. maybe?
    Thanks for help!!!
    Benni

    #314854
    alucard001
    Participant

    Hi all.

    I am looking for a solution that, for each individual user
    in buddypress, I would like to have each user having their
    own frontend page (or called dashboard).

    For example, when member A and member B are going to a page
    like /mypage. Member “A” can have its own page layout that
    has a set of customized widgets on /mypage.

    While Member “B” has also its own page layout also, with
    another set of widgets on /mypage.

    Is there a plugin for that? How to achieve such objective in
    buddypress?

    Currently I am running a theme called WOffice and I am looking
    for such solution.

    Thank you very much.

    2bluesweet
    Participant

    How do I fix the buddypress profile cover image responsive issue? I see buddyboss and youzer have a great looking cover image. How can I accomplish this. My cover images don’t seem to act the same way….Can someone please help.

    2bluesweet
    Participant

    I am using wcfm marketplace plugin with buddypress. I have a link in the store sidebar that shows the store owner (buddypress profile info). My problem is ..I don’t know how to make the link look better . I would love to add the buddypress profile avatar and place the user name under the picture. Can someone please help!!! Thus is the code that I was given.

    shortcode
    [wcfm_store_info data=”bp_url”]

    code snippet
    add_filter( ‘wcfmmp_additional_store_info’, function( $data_value, $data_info, $store_id ) {
    if( function_exists( ‘bp_core_get_user_domain’ ) && ( $data_info == ‘bp_url’ ) ) {
    $bp_url = bp_core_get_user_domain ( $store_id );
    $data_value = ‘‘.$bp_url.’‘;

    }
    return $data_value;

    }, 50, 3 );

    oguruma
    Participant

    Scenario: BB Press + BuddyPress (well, Buddyboss, technically) Site has multiple forum topics.

    I have a “Political” forum. Since most of the topics are divisive, I want to exclude all topics in the “Politics” from going to the BuddyPress activity feed.

    All of the Forums will still work the same way, I just don’t want the topics in that forum, or the responses to the topics to be shown in the Activity Feed.

    Is there a snippet I can add that will exclude those topics?

    #314812

    In reply to: I like

    VibeThemes
    Participant
    #314810
    crisper
    Participant

    Hello BuddyPress community,
    I am working on customizing Buddypress and would like to modify some structures.

    I followed some tips on this forum, for example, to change the structure of the members page:

    I copied this file: bp-templates/bp-nouveau/buddypress/members/members-loop.php
    in my theme folder: my-child-theme/buddypress/members/members-loop.php

    So I modified the file in a few lines to try, but any changes are not applied.

    Am I wrong?

    BuddyPress plugin 6.3.0
    Wordpress 5.5.1
    Template Hello by Elementor (child)

    #314809
    oguruma
    Participant

    I want to use the Ad Inserter Plugin to insert ads after BuddyPress hooks.

    Specifically I want to insert them after the activity feed items.

    Which hook is the action that adds the Activity Feed item to the DOM?

    #314732
    rhoenig
    Participant

    I’m looking for away to have a registration form send to a different recipient based on a select option on the form. How can this be accomplished with buddypress?

    Thank you
    Robert

    #314729
    sabomoh
    Participant

    Hello
    I need help,i am trying to embed Instagram feeds as buddypress post but can’t seem to get a plug-in to do that most plugins just offer options to display Instagram post as short code, except if it’s possible to somehow get buddypress to display a shortcode as posts. Please Someone help me out. Also when I try to reply a comment it show error saying I can’t send an empty message even after typing a text.
    Thanks

    #314666
    cibergod
    Participant

    Wordpres version 5.5.1
    Buddypress version 6.3.0

    Hello everyone. I am very new to wordpress and I have many questions, but my first question is this:
    I need to create a web community for photographers and each member can sell their work to other members. How can I get a gallery on budypress where any member pays another for the photo?
    In the same way, I need each affiliated company to have the opportunity to manage the profiles of their workers. That is, a space where a person can manage all the messages received by several of their workers, as well as manage their sales.
    Do you know if there are plugins that allow integration with buddypress to do this? I know something about Woocommerce but I don’t know if it can be linked with buddypress for this purpose.
    Excuse my English, my native language is Spanish.
    Thank you very much.

    #314511
    sayri88
    Participant

    Hi, how can I limit the number of groups a user can create in “buddypress”?

    #314509
    chrisp333
    Participant

    Hi Hope someone answers me sooni, good idea, I want to create a custom button to create a group.

    with ##member_name##/groups/create/step/group-details/

    My Buddypress profile is displayed with a group creation form in the first step.

    How can I create a Create Group Button in a page ?.

    #314344
    jasonsubers
    Participant

    You can use bp_parse_args() to do that.

    So for the members loop, the filters are

    bp_before_has_members_parse_args
    bp_after_has_members_parse_args

    I needed to only show members of a certain type in my directory, so this worked for me:

    function only_members( $retval ) {
    	$retval['member_type'] = array( 'type1', 'type2' );
    	return $retval;
    }
    add_filter( 'bp_before_has_members_parse_args', 'only_members' );
    #314343
    rachelAGC
    Participant

    Hi guys,

    Domain 1 – afci.org
    Subdomain 2 – directory.afci.org
    Subdomain 3 – community.afci.org

    All running wordpress latest.

    I wish to connect the 2 subdomains with a single login.
    Subdomain directory.afci.org was built with 380 users on wordpress 5.5.1 platform
    I recently built community.afci.org to allow users to chat during covid on the wordpress 5.5.1 platform using Buddypress 6.3.0 and bbPress 2.6.5
    Wishing one login username and password to allow users to login to one site and be automatically logged into the other, I used a plugin Shared Logins Pro by Codexpert. 
    This has be a disaster. The two never seemed to connect properly.
    I then saw an instructable https://kinsta.com/blog/share-logins-wordpress/ where I could make Subdomain 3 use the database of Subdomain 2. I noticed that in the databases of wordpress site Subdomain 2 are wp_users, wp_usersmeta but in the Subdomain 3 BuddyPress database they are named wp_user_blogs wp_user_blogs_blogmeta
    Q.1 Is it possible that the 2 different database setups conflicted and this why the plugin was unsuccessful?
    Q2 Is a solution to rename Subdomain 3 databases wp_user_blogs wp_user_blogs_blogmeta to wp_users, wp_usersmeta and find where they are mentioned in the functions.php and redirect to the new names?
    Q3 Anyone have any ideas of how to connect the 2 subdomains or is this not possible with BuddyPress?
    I’m excited to hear your ideas.
    Thanks so much.
    Rachel

    #314341
    ncarring
    Participant

    I wonder if this is because of our site folder structure. The domain is:

    club.xxxx.org.uk – this redirects to a public site that provides non-members with some useful information. The members-only part of the site is:

    club.xxxx.org.uk/members

    This is where WordPress is installed, so WordPress displays whatever you configure it to there – either the “posts” page, or a static page.

    Coincidentally, BuddyPress also uses “Members” as its default. Can I somehow configure BuddyPress to use some other name in case the two are getting confused? I see that I can pick the “Members” page association from a list (see image), but the name of the page is pre-determined. Can it be changed? Is this likely to be the source of the issue, anyway? Without changing the folder structure (which would cause all kinds of other issues with orphan links no doubt) I can’t see how to test it any other way.

    BP settings

    #314339
    Steve Keller
    Participant

    Hey Shane,
    Seems like the Orig. Poster had a similar experience, yet you guys didn’t answer his questions… Here, for convenience…

    “as soon as I activate BuddyPress, the home page disappears and is replaced by the “Members” page. I’ve tried disabling “enable default front page for member profiles” but this has no effect. If I disassociate the “members” page in BuddyPress settings, the home page returns, but member profiles become inaccessible (404 error). Is there a way to have the standard home page but allow access to the member’s profile via another link in the menu somewhere (and by clicking the link under a member avatar)?”

    Thanks, Steve

    #314337
    Steve Keller
    Participant

    Nick,
    Thanks for confirming what I guess is standard protocol for BuddyPress, the taking over of a site home page. I was curious about the BP page designations that just appeared, and not through the std. WordPress “Add New” avenue. I deactivated until I understand it better.

    Did you find a good step-by-step guide for the install, or am I overthinking this?

    Thanks,
    Steve Keller

    #314236
    agizzie
    Participant

    here is what I’ve tried…

    //rename notifications (drop down) profile menu list
    
    function bpcodex_rename_notifications_nav_items() {
    
        buddypress()->members->nav->edit_nav( array( 'name' => __( 'Teams' ) ), 'groups' );
        
    }
    add_action( 'bp_actions', 'bpcodex_rename_notifications_nav_items' );
    agizzie
    Participant

    Buddypress 2.6, wordpress 5.5.1

    I’ve re-named groups to teams on all menus but I can’t work out how to rename it on the profile dropdown menu, (the menu that drops down when clicking on profile picture – top right of screen). Any suggestions? Thanks

    #314099
    valuser
    Participant

    This Link actually might be better as it addresses a very similar question

Viewing 25 results - 3,626 through 3,650 (of 73,312 total)
Skip to toolbar