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: 25485

    Hi Daniel,
    It seems you are using FFMPEG transcoder plugin.

    All I see is “the media is under conversion”. Please make sure you have configured it correctly for transcoding or disable it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: I like this :) #27586

    I am glad you are planning to visit India. I hope it happens soon 🙂

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi,
    Thank you for the reply.

    I have checked it using FFMPEG version 2.8.15

    There are a lot of factors that might cause it. I will suggest upgrading FFMPEG and try configuring the cron job.

    You may use a plugin like WP Crontol to check if the cron is configured and working or not?

    PS:- I tested it on Ubuntu 16.04 and Ubuntu 18.04 LTS.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Mical,
    Welcome to BuddyDev forums.

    Is there any chance you are creating the options dynamically? I do not see any other reason why the ids will change(this plugin does not modify the ids.

    Also, Please do know that BuddyPress limits field visibility by members type. So, if you assign a condition on a field and if the field is not available for user’s member type, the condition may not work as expected.

    Please have a look and let me know you findings.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Peter,
    Welcome to BuddyDev.

    This is doable if you want your users to enter some data. In case of BuddyPress, only a field with some data is fetched and shown on profile page.

    If you want to create a field which uses shortcode from another plugin but the user does not enter any data, It is not doable(atleast easily since BuddyPress won’t list the field).

    If you want, You can provide me a field id(text or multiline text field) and I can help getting your shortcode working in it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: [Resolved] Buddypress editable activity #27581

    Hi Chameli,

    Thank you for reporting this. we need to add support for it in the plugin. Please allow us next 2-3 days to have it in the plugin.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: Buddyoress user registration from not working #27580

    Hi Bharat,
    Thank you for the question.

    I will need some time to check this code. Will get back to you in next couple of days.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: Visible Gallery Only Private Groups #27569

    Hi Javier,
    You will need some way to restrict visibility of the content.

    Here is some code to create conditional shortcode

    
    
    /**
     * Only show content if user is logged in.
     * [if-logged] .....[/if-logged]
     */
    add_shortcode( 'if-logged', function ( $atts, $content = '' ) {
    
    	if ( ! is_user_logged_in() ) {
    		return '';
    	}
    
    	return do_shortcode( $content );
    } );
    
    

    Once you have this code, you can wrap other shortcodes/contents inside it to make it only visible to logged in user.

    Here is an example

    
    
    [if-logged]
    [mpp-list-gallery id=1355 column=1]
    [/if-logged]
    
    

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi C,
    Please upgrade to 1.1.4 and let me know if that fixes it.

    It seems to me that the issue is related to how select2 js is being used. I have disabled even registering the select2 from our plugin on non relevant pages. That should fix it.,

    Regards
    Brajesh