Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 10,301 through 10,325 (of 68,948 total)
  • Author
    Search Results
  • #252785
    BackpackersUnion
    Participant

    @sharmavishal Thanks for the suggestion! “BuddyPress Wall” goes beyond what I’m looking for and seems to have quite a few unhappy users (Even most of the 5 star reviews are issues). So, I’m afraid it will cause more issues than it would solve.

    I’ve found a tutorial here using bp_parse_args() to create an activity loop with ‘Personal’ and ‘Friends Activity’ only, but not a way to isolate the loop into its own subnav tab “All” (The code currently effects all activity loops universally [i.e. Friends, Personal, Mentions, Favorites, Site wide, all become Friends+Personal loops]).

    Here’s the code to filter the activity loop into Friends+Personal,

    function my_filter_activity( $loop ) {
        
        $loop['scope'] = 'just-me,friends';
     
        return $loop;
    }
    add_filter( 'bp_after_has_activities_parse_args', 'my_filter_activity' );

    The next step would be isolating the loop into an ‘All’ activity subnav tab/button.

    Any ideas?

    dowen777
    Participant

    I can’t get the escaped characters to appear in a way that reflects what BuddyPress is outputting to the screen.

    #252774
    ishvara
    Participant

    Question (or maybe a suggestion) to Buddypress developers:
    I was wondering if it’s possible to apply a filter to
    the returned $slug in groups_check_slug() function
    so that anyone can play with BP group slugs?
    Cheers.

    #252769
    shanebp
    Moderator

    To determine if the issue is in your theme, try switching momentarily to a WP theme like 2013.
    You’ll need to copy members-loop.php to a buddypress folder in that theme.

    You can only echo the data if it exists.
    Try:

    $your_name = bp_get_member_profile_data( 'field=Your Name' );
    if ( $your_name != false ) 
       echo $your_name;
    #252765
    Paul Wong-Gibbs
    Keymaster

    BuddyPress 2.5 made a lot of changes to how BuddyPress works with emails. We’ve been making incremental fixes and compatibility improvements in each release since, and we have v2.5.3 almost ready for sometime in the next couple of weeks or so.

    People still having problems could try running https://en-au.wordpress.org/plugins/bp-email-to-wp-mail-from-bridge/ to see if it helps, but we have other fixes in place for v2.5.3 that aren’t provided by this plugin.

    #252763
    Paul Wong-Gibbs
    Keymaster

    Thanks. This isn’t actually a bug in BuddyPress, but we flag it to reveal code in other plugins running at the wrong time because quite often this can cause very subtle problems in BuddyPress and other plugins.

    We’ve very recently adjusted the messaging to make it clearer which plugin is causing us to trigger this notice: https://buddypress.trac.wordpress.org/changeset/10709/

    #252758
    Rapforthemoment
    Participant

    Hey Buddypress users. I have current version of WordPress and Buddypress (4/22/2016).

    I am trying to completely remove the need for Buddypress registration. Reason being, I have a theme that has its own registration process. With Buddypress registration, that makes it two completely different registration processes.

    I want to remove the need to have a Buddypress registration process completely. I have searched throughout your entire forum and I have tried everything. Nothing works. I continue to get the message “Missing buddpress register page. Repair.”

    #252757
    Julia_B
    Participant

    Hi @pixelpushermama – interestingly, no I’m not using any of the other plugins, only BuddyPress 2.5.2 and
    bbPress 2.5.8

    I’ve found a few other recent posts here on the support forums reporting similar issues but have yet to find a fix.

    Hope someone can help us out soon. 🙂

    #252744
    mtgame21
    Participant

    Is there a page id for the buddypress profile page?

    pfeufer
    Participant

    Hi,

    Yes, I mean the Groups component of Buddypress.

    Thanks,
    John

    #252739
    shanebp
    Moderator
    #252700
    Georgio
    Participant

    Is BuddyPress the right tool for this simple approach to begin with?

    It depends on the image you want for your network. For example, you can rename the groups to clubs, but this will not affect second level slugs. Look at my problem I am googling since two days and don’t find solution. I found threads of people that ask for slug customization since 5 years, but the problem is half-resolved, because the developers work at their free time for this and maybe they see other priorities I don’t see.

    So if you want a very professional image, buddypress is not yet ready. If you don’t care about urls that mix clubs with groups, go for it. You can also look at Ultimate Member, another networking plugin, to see if it fits your needs.

    #252694
    Henry Wright
    Moderator

    It looks like you could have the path wrong. Instead of your_theme/buddypress/bp-templates/bp-legacy/buddypress/activity/entry.php, try:

    your_theme/buddypress/activity/entry.php

    #252692
    Night Hawk
    Participant

    Its amazing how a simple code like this is working: do_action( ‘bp_activity_entry_content’ );
    But I have another issue here. I see the code working strait on the buddypress\bp-templates\bp-legacy\buddypress\activity\entry.php. But I dont know how to create a template overload. I try to follow the info here: https://codex.buddypress.org/themes/theme-compatibility-1-7/a-quick-look-at-1-7-theme-compatibility/#how-is-this-useful

    So what I dit was to copy the whole buddypress plugin on my theme directory, than I changed the entry.php and add it on my theme/buddypress\bp-templates\bp-legacy\buddypress\activity\entry.php
    But is not working…For sute I miss something!

    #252689
    shanebp
    Moderator

    Create a template overload of this file:
    buddypress\bp-templates\bp-legacy\buddypress\members\register.php

    And carefully adjust it to your needs.

    #252687
    shanebp
    Moderator

    A lot, maybe most BP sites are not commercial.

    You may want to create a template overload of this file:
    buddypress\bp-templates\bp-legacy\buddypress\activity\entry.php

    To add content to the entries in the activity stream, use this hook in that file:
    do_action( 'bp_activity_entry_content' );

    If you need access to the activity content as part of your ad display decision chain, use the filter hook in buddypress/bp-activity/bp-activity-template/ :
    apply_filters_ref_array( 'bp_get_activity_content_body', array( $activities_template->activity->content, &$activities_template->activity ) );

    #252683
    danbp
    Participant

    Please find your answer on BuddyPress Codex:

    User Extended Profiles

    #252662
    sharmavishal
    Participant

    try using twentyfifteen default theme and activate only buddypress plugin…disable all other plugins and check if it works..in fact it should work…and as you are using a custom wplms theme get in touch with the theme author for theme related issues..this is not a buddypress issue

    #252660

    In reply to: Blog commenting system

    Henry Wright
    Moderator

    Some parts of BuddyPress use AJAX and some don’t. It’s common for plugin developers to add their own JavaScript, so feel free. See this article for info:

    https://codex.wordpress.org/AJAX_in_Plugins

    #252658
    SlowSpeed
    Participant

    The thing is that I don’t know which plugin does the private messages..
    Is it BuddyPress?

    Also what does it matter how long it takes to load? Is it connected to the private messages?

    #252640
    jameshh93
    Participant

    Okay I now have this above my my buddypress div in the activity.php

    <div class="activity-sidebar-left">
    
    	
    	<div id="item-header" role="complementary">
    
    		<?php
    		
    		add_filter('bp_displayed_user_id','bp_displayed_outside_bp');
    function bp_displayed_outside_bp($id){
    	return ($id==0) ? get_current_user_id() : $id;
    	
    }
    
    $cover_image_url = bp_attachments_get_attachment( 'url', array( 'item_id' => bp_displayed_user_id() ) ); 
    
    		if ( bp_displayed_user_use_cover_image_header() ) :
    			bp_get_template_part( 'members/single/cover-image-header' );
    		else :
    			bp_get_template_part( 'members/single/member-header' );
    		endif;
    		?>
    		
    		
    
    	</div><!-- #item-header -->
    
    	</div>

    but for some reason the cover image will not show up but the username and that does? anyhelp guys would be super! thank you.

    Paul Wong-Gibbs
    Keymaster

    FYI wp_mail_from_name and wp_mail_from support are coming back in BuddyPress 2.5.3. Thanks to everyone’s feedback regarding this.

    #252629

    In reply to: Blog commenting system

    Henry Wright
    Moderator

    Can we get that from buddypress?

    You sure can! The activity feed has AJAX built in so you shouldn’t see page reloading after posting a comment.

    If there is ajax functionality, does it do a continuous ‘load more’ or will it paginate after a set amount of comments?

    By default, a “Load More” button is displayed which when clicked will load the next 20 items. I believe the activity stream supports paginated pages, but don’t quote me on that right now because I’d need to check.

    #252628
    Henry Wright
    Moderator

    bbpress.php is handled by bbPress so you should give those guys a shout:

    https://bbpress.org/forums/

    This issue may also be applicable to BuddyPress templates so it’s worth keeping this topic open.

    #252620
    sharmavishal
    Participant

    apologies..misread it….following might help if you not gone through it:

    bp_notifications_add_notification

    https://gist.github.com/modemlooper/9693b591d8c36288496d

Viewing 25 results - 10,301 through 10,325 (of 68,948 total)
Skip to toolbar