Shape the future of Social networking with WordPress: Join Project Midnight Sun! The next generation platform for community building with WordPress!

BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: Buddypress activity comment feature request #5290

    Hi Arvind,
    Please take a look at your theme’s activity/entry.php . All the button comes from the div ‘activity-meta’

    So, except the 2 buttons, put everything in your dropdown and then it should work.

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: starrating #5289

    Hi Christian,
    Please use css to make it look better.

    Also, You don’t have premium subscription, Please avoid using premium forums and use the community support(I have moved the topic there).

    Premium forums are for paying customers to allow us serve them in timely matter. I hope you understand it.

    PS: Please do not buy premium subscription for MediaPress, we will not be able to help much on NFSW site.

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: BuddyPress Ajax Registration issue #5288

    Hi,
    My apologies for the inconvenience.
    The problem happens when a theme/plugin company uses the ‘bp_core_activated_user’ inappropriately and add a redirect on it without checking whether a request is coming via ajax or is normal request.

    I have seen it happening with WPLMS theme earlier.

    As far as I checked with Boss 2.2.2, I don’t see any issue. If you are a developer, Please do a search for the ‘bp_core_activated_user’ in your code and let me know if you find something.

    Thank you.
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25273

    Hi Elio,
    Please add this

    
    
    function buddydev_append_membertype_in_page_title( $title, $component ) {
    
    	if ( $component != 'members' ) {
    		return $title;
    	}
    
    	$member_type = bp_get_current_member_type();
    
    	if ( ! $member_type ) {
    		return $title;
    	}
    
    	$type_object = bp_get_member_type_object( $member_type );
    
    	$title = $title . ': ' . $type_object->labels['singular_name'] ;
    
    	return $title;
    
    }
    add_filter( 'bp_get_directory_title', 'buddydev_append_membertype_in_page_title' , 10, 2 );
    
    

    and let me know if it works for you or not?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25273

    Hi Simon,
    Please use this plugin
    https://github.com/mediapress/mpp-ligtbox-colorbox

    It needs the ligtbox plus plugin installed too.

    It seems that it is not available on WordPress anymore. You can use any plugin which uses colorbox or download it from here too
    https://www.23systems.net/wordpress-plugins/lightbox-plus-for-wordpress/

    Hope that helps.

  • Keymaster
    (BuddyDev Team)
    Posts: 25273

    Hi Elio,
    Thank you for the detailed reply.

    It is for the title in the browser(The attribute). Are you referring to Directory title inside the page?

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: Buddypress activity comment feature request #5275

    Hi Arvind,
    It is theme dependent. Please look for this

    
    bp_legacy_theme_hide_comments
    

    in your buddypress.js and you will see the default is set to 5. You can update it there.

    Hope that helps.

  • Keymaster
    (BuddyDev Team)
    Posts: 25273

    Hi Cody,
    Thank you for confirming. I am glad it worked. All the best with your website 🙂

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25273
    Brajesh Singh on in reply to: BP notifiy post author – read notifications #5271

    Hi Brincy,
    Welcome to BuddyDev.

    It should be the default behavior. I am checking and will report back.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25273

    Hi Elio,
    Welcome to BuddyDev.

    Please put this code in your bp-custom.php or in your theme’s functions.php and It will do

    
    function buddydev_append_membertype_in_directory_title( $bp_title, $old_title ) {
    
    	$member_type = bp_get_current_member_type();
    
    	if ( ! $member_type ) {
    		return $bp_title;
    	}
    
    	$type_object = bp_get_member_type_object( $member_type );
    
    	$bp_title['title'] = $bp_title['title'] . ': ' . $type_object->labels['singular_name'] ;
    	return $bp_title;
    }
    add_filter( 'bp_modify_document_title_parts', 'buddydev_append_membertype_in_directory_title', 10, 2 );
    

    Hope that helps.
    Regards
    Brajesh