Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 10,376 through 10,400 (of 69,016 total)
  • Author
    Search Results
  • #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

    #252616
    ashwinkk
    Participant

    Hi @sharmavishal,
    I am not looking for the notifications widget. Actually I want to trigger custom notification on buddypress notification system.

    #252611
    sharmavishal
    Participant
    shanebp
    Moderator

    Try:

    add_action( 'bp_email', function( $email_type, $email_obj ) {
        $email_obj->set_from( "custom@example.com", "Custom Website Name" );
    }, 10, 2 );

    https://codex.buddypress.org/emails/#filter-from-address-and-name

    #252594
    emoreno108
    Participant

    Hello People, I have a similar problem, change-cover-image does not work. This happens with every theme. I have two installations of wordpress, one works (installed locally) and a remote one in the web server which does not work.

    Making test with buddypress style I installed plugins as follows:

    BuddyPress Profile Tabs
    BuddyPress – New UI

    Both currently deleted. I cannot say change-cover-image was working before the plugins above.

    What I can say is that some strange characteres are displayed before and after the select-file frame as follows:

    Before:” /*Subir/*]]>*/
    /*Hacer foto/*]]>*/

    /* ”

    After:” /*]]>*/ ”

    I included the quotes. JIC my installation is in spanish.

    Thanks a lot in advance people

    #252593
    Paul Wong-Gibbs
    Keymaster

    There is one other tweak that’s coming up in BuddyPress 2.5.3 (not sure when it’ll be released, would guess a week or two) that might address it. After 2.5.3, BuddyPress should be identical with WordPress in terms of compatibility with the majority of plugins that help WordPress support SMTP.

    For the record, if you’re running a plugin that defines wp_mail() that helps you have WordPress’ emails be sent, then it just won’t work with BuddyPress.

    #252584
    dfarland
    Participant

    It doesn’t appear to be. The only emails I’m receiving are those initiated by WP or bbPress. The emails related to activation, group requests, mentions, and other BuddyPress emails are not coming through.

    #252580
    dfarland
    Participant

    I’ve confirmed the 3rd party email blocking only applies to (mt)’s WordPress hosting not their Grid system. Unfortunately, that means I’m back to it being a BuddyPress / SMTP issue.

    I’ve tried a couple of other email plugins and none have worked either. Again, regular WP emails are working fine.

Viewing 25 results - 10,376 through 10,400 (of 69,016 total)
Skip to toolbar