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: 25480
    Brajesh Singh on in reply to: [Resolved] limit friendship #19131

    Hi,
    We are doing our best to release it today by day end PST(Nov 30).

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25480

    Hi George,
    The width issue is related to floating. I will check this again today on another install with twentysixteen and get back to you. There is a possibility that something might be conflicting.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25480
    Brajesh Singh on in reply to: [Resolved] limit friendship #19123

    Yes, It is.
    Since BuddyPress 4.0 was released on Tuesday, Our team got busy with testing all our plugins and was unable to create the page for this plugin.

    I will need 1-2 more days to publish this plugin and will link after that.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25480

    Hi George,
    Thank you for checking.

    I am suspecting it to be either a float or a positioning issue. I will be able to assist you on this in next 2-3 days again as right now 4.0 compatibility is the highest priority for us.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25480
    Brajesh Singh on in reply to: Change size of video embed #19113

    Hi Hugo,
    Are you using any plugin that controls embed or embed size?
    Is it happening with Community Builder theme or some other theme? If other, then which theme?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25480

    Are you using WordPress version or github version? I will recommend using WordPress org version. Also, Please disable other plugins(or you can use WP Staging plugin to create staging and disable plugins)(including the featured-group plugin).

    Give it a try and let me know.

    Regards
    Brajes

  • Keymaster
    (BuddyDev Team)
    Posts: 25480
    Brajesh Singh on in reply to: [Resolved] Display Group Description in sidebar #19108

    Hi Torben,
    Here is a shortcode I created for you

    
    
    /**
     * Group description shortcode.
     *
     * @param array  $atts attributes.
     * @param string $content content.
     *
     * @return string
     */
    function buddydev_custom_group_description_shortcode( $atts = array(), $content = '' ) {
    
    	$atts = shortcode_atts( array(
    		'group_id' => bp_get_current_group_id(),
    	), $atts );
    
    	return $atts['group_id'] ? bp_get_group_description( groups_get_group( $atts['group_id'] ) ) : '';
    }
    
    add_shortcode( 'bpcustom-group-description', 'buddydev_custom_group_description_shortcode' );
    
    

    You can keep the code in bp-custom.php or child theme’s functions.php

    and use it like

    
    [bpcustom-group-description]
    
    

    To show it for current group.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25480
    Brajesh Singh on in reply to: Change size of video embed #19107

    Hi Hugo,
    How are you adding the video.
    I tested adding one and I see this

    https://i.imgur.com/X2baGRR.png

    The size of video(embed) is controlled by global variable $content_width and if you are adding videos on smaller screen, this may be the reason.

    If you can specify which device/screensize you used, I will be able to assist better.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25480

    Hi Carsten,
    It is tested to work with BP Nouveau. Most probably you are using an older version. I will confirm it again today on 4.0 and will post back.

    PS:- I am sorry I haven’t been able to reply your email for last few days, will do by late evening today.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25480

    Hi George,

    We are using generic classes to get the styles from BuddyPress. May be we can avoid it in future.

    About the slide mode, I am not sure what is the issue on the site but the slide mode is working. I have tested on 2 other installs to confirm it. Can you please switch the theme and test it?

    Regards
    Brajesh