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: 25394
    Brajesh Singh on in reply to: [Resolved] Mediapress status order #15173

    Thank you for confirming.

  • Keymaster
    (BuddyDev Team)
    Posts: 25394
    Brajesh Singh on in reply to: Buddypress 3.0 #15172

    Hi Gregg,
    Most of our plugin are compatible with BuddyPress 3.0(with legacy template pack, )

    There are some plugins which are not compatible with BuddyPress 3.0 with the BP Nouveau template pack.

    We will publish the whole list on Monday and by then, we should have all plugins compatible with Nouveau ).

    Feel free to update if you are using the legacy template pack.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25394
    Brajesh Singh on in reply to: [Resolved] Ajax Registration #15164

    Hi Daniel,
    Thank you.
    I am sorry for the delayed reply. I sincerely appreciate your kind gesture. At BuddyDev, we appreciate your membership.

    There is no need to pay extra. We do charge when we provide custom development services but there is no need to pay us anything for assisting on the forum. It comes with the Pro membership.

    Thank you for being a valuable member and the kind gesture.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25394
    Brajesh Singh on in reply to: Contact Me and BuddyPress Email Template #15163

    Hi Sujee,
    Thank you for posting.

    I agree that using html email is better way. I will look into it and have it in our next update(It will take a little time).

    At the moment, the easier way to change header footer will be to use a plugin like this
    https://wordpress.org/plugins/email-header-footer

    Though I won’t recommend the plugin as it collects data(uses freemius). I am unable to understand any valid reason(other than pure marketing and bloating) why the plugin needs to collect data.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25394

    Hi Robert,
    Thank you for posting.

    1. At the moment, the users are visible form the back end users list but not from front end. I will add it in our next update to let admins see all member from front end lists too.

    2. No. They are different. If you select no, the user won’t be searchable(using the search form) but will be listed in the directory.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25394
    Brajesh Singh on in reply to: BuddyPress Activity Comment Notifier #15161

    Hi Nikki,
    I am sorry, I could not include the notifications in 1.3.7(released today). The notification will need a few more days.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25394
    Brajesh Singh on in reply to: Media Press and Site wide activity? #15160

    Hi Jill,
    Hope you are doing well.

    Please upgrade to the latest version of MediaPress(1.3.7) and also the latest version of the Sitewide activity widget.

    It will allow attachments without content now.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25394
    Brajesh Singh on in reply to: [Resolved] Mediapress status order #15159

    Hi Axel,
    Here is a future proof way to do it

    
    
    /**
     * Reorder status in the dropdown.
     *
     * @param array $statuses statuses.
     *
     * @return array
     */
    function mpp_custom_status_order( $statuses ) {
        // the ordered list, knowm.
    	$ordered_statuses = array( 'public', 'loggedin', 'friendsonly', 'loggedin', 'private' );
    
    	// we will organize the list here.
    	$new_ordered_statuses = array();
    
    	// Copy all valid status based on the ordered status. It only copies the statues specified by the ordered list.
    	foreach ( $ordered_statuses as $ordered_status ) {
    		if ( isset( $statuses[ $ordered_status ] ) ) {
    			$new_ordered_statuses[ $ordered_status ] = $statuses[ $ordered_status ];
    		}
    	}
    
    	// now, some other values might still be remaining.
    	$remaining_statues = array_diff( array_keys( $statuses ), $ordered_statuses );
    
    	foreach ( $remaining_statues as $remaining_key ) {
    		$new_ordered_statuses[ $remaining_key ] = $statuses[ $remaining_key ];
    	}
    
    	return $new_ordered_statuses;
    }
    
    add_filter( 'mpp_get_editable_statuses', 'mpp_custom_status_order' );
    
    

    It might be even easier in future when we add the support for Sortable interface.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25394

    Hi Sujee,
    It can be easily added but I will suggest to wait for next 2-3 days. I am adding the dynamic redirection (also custom landing tabs) to our member types plugin.

    That will make it way better for you.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25394

    You are welcome. Marking it as resolved.

    Regards
    Brajesh