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 Julien,
    The plugin is specificaly for MediaPress and if you are not using MediaPress, you don’t need this plugin. It allows rating of the Media added by MediaPress.

  • Keymaster
    (BuddyDev Team)
    Posts: 25456

    Hi Chris,
    Thank you. We did not test it with the Branded Login plugin. We will be doing that today and will update you.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25456
    Brajesh Singh on in reply to: BP Ajax Registration #6943

    Hi,
    Thank you.

    Please allow me to take care of it today. I will post back after my changes.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25456

    Hi Julien,
    Once Activated, Please Visit MediaPress->settings and you will see the addons tab. You can control the appearance of stars from there.

    Also, you will see the widgets appear in your widget section. You can use that to list the media.

    PS: We are going to add more documentation to this plugin this weekend.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25456
    Brajesh Singh on in reply to: [Resolved] Mediapress Upload Permissions #6941

    Hi Ian,
    Welcome to BuddyDev.
    My apologies for the inconvenience.

    I am looking at it and will update you in next 1-2 hours.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25456

    Hi Jared,
    Welcome back to the BuddyDev forums.

    I may be mistaken here but when I looked at the code it seems we are not checking for the post type. So, t should support that out of the box.

    https://github.com/buddydev/bp-notify-post-author-on-blog-comment/blob/master/bp-blog-comment-notifier.php

    Can you please tell me if it is not doing so ?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25456
    Brajesh Singh on in reply to: [Resolved] Need a little help with this code #6932

    Hi Chris,
    The WordPress admibar does not allow specifying the priority. The solution is to delay the adding of menu item.

    You can change the action hook to this

    
    
    add_action( 'wp_before_admin_bar_render', 'buddydev_update_personal_activity_in_admin_bar3', 100 );
    
    

    and it will add at the bottom of the settings menu.

  • Keymaster
    (BuddyDev Team)
    Posts: 25456

    I am looking forward to it 🙂

  • Keymaster
    (BuddyDev Team)
    Posts: 25456
    Brajesh Singh on in reply to: BP Ajax Registration #6930

    Hi,
    I did check it on the site

    There are three plugins causing the conflict:-

    1. Feed Them Social
    2. Cherry Plugin
    3. Bp Ajax Registration

    The source of conflict is use of magnific popup js file. All three plugin include it. Though I can disable it for BP Ajax Registration, we need to disable it from atleast one of the above plugins.

    Loading 3 copies of the same library is causing the error.

    PS: I was not able to edit source file on your server.

  • Keymaster
    (BuddyDev Team)
    Posts: 25456
    Brajesh Singh on in reply to: [Resolved] Need a little help with this code #6925

    Hi Chris,
    you will need to pass title like this

    
    
    /**
     * add change username to adminbar
     */
    function buddydev_update_personal_activity_in_admin_bar3() {
    	global $wp_admin_bar;
    
    	if ( ! is_user_logged_in() ) {
    		return;
    	}
    
    // Update personal activity Url for the logged in user
    	$wp_admin_bar->add_menu( array(
    		'parent' => 'my-account-settings',
    		'id'     => 'change-username',
    		'title'  => 'Username',
    		'href'   => bp_loggedin_user_domain() . 'settings/change-username/',
    	) );
    }
    
    add_action( 'bp_activity_setup_admin_bar', 'buddydev_update_personal_activity_in_admin_bar3', 100 );
    
    

    Hope that helps.

    Regards
    Brajesh