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

    Hi Simon,
    Sorry could not post yesterday. Will do it today.

  • Keymaster
    (BuddyDev Team)
    Posts: 25456
    Brajesh Singh on in reply to: [Resolved] Mediapress audio upload error #5256

    Hi Arvind,
    It is the php upload limit on your web server., Please ask your web server admin to update the

    upload_max_filesize
    post_max_size

    These two should be larger than the uploading file.

    Hope that helps.
    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25456
    Brajesh Singh on in reply to: BP-Album Importer #5249

    After that, If I remember correctly, I sent @larsik78 a copy of the BP Gallery migrator.

    Also, I gave up my plans to write the migrator for BP Album, RT Media after looking at their code. The time needed was not justified.

  • Keymaster
    (BuddyDev Team)
    Posts: 25456
    Brajesh Singh on in reply to: [Resolved] Buddyblog Featured Image #5247

    Hi Arvind,
    I am sorry but that is not doable at the moment. Featured images are optional part and the post is already created before you even upload an image.

  • Keymaster
    (BuddyDev Team)
    Posts: 25456

    Hi Mateo,
    I am sorry for the inconvenience.

    Can you please visit Dashboard->MediaPress->Tools and post me the debug log?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25456
    Brajesh Singh on in reply to: Migrating from BuddyPress Album to MediaPress #5242

    Hi Lavish,
    My apologies in advance.
    We have no plans to create any migrator for BP Album or BuddyPress media(RT media). They are not worth the effort.

    These plugins have very convoluted schema/code making it difficult to understand their data schema.

    If someone is interested, we will help on the MediaPress side of the things(How to add media to MediaPress) but that’s all. you will need to find a developer to do the rest.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25456
    Brajesh Singh on in reply to: [Resolved] Extended Code for Private Site #5237

    You are most welcome Hans 🙂

  • Keymaster
    (BuddyDev Team)
    Posts: 25456

    Hi Jaume,
    I am glad it did 🙂

  • Keymaster
    (BuddyDev Team)
    Posts: 25456
    Brajesh Singh on in reply to: [Resolved] Merging subnav tabs #5231

    You are most welcome John 🙂

  • Keymaster
    (BuddyDev Team)
    Posts: 25456
    Brajesh Singh on in reply to: [Resolved] Merging subnav tabs #5228

    Hi John,
    Thank you for the details.

    I have slightly modified your code

    
    function change_default_settings_tab() {
    
    	$bp = buddypress();
    
    	bp_core_new_nav_default( array(
    		'parent_slug'       => $bp->settings->slug,
    		'subnav_slug'       => 'accountdetails',
    		'screen_function'   => 'your_function_that_loads_templates' //change it
    	)
    	);
    
    }
    add_action( 'bp_settings_setup_nav', 'change_default_settings_tab', 5 );
    
    

    Note the ‘screen_function’ key. Please make sure to pass your screen function that loads the template( which you used while registering the nav item). Also, subnav slug only needs the slug not the complete parent/child.

    Please let me know if it worked for you or not?

    Thank you
    Brajesh