Replies
Thank you for confirming.
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
BrajeshHi 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- Brajesh Singh on May 18, 2018 at 6:51 am 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-footerThough 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 - Brajesh Singh on May 18, 2018 at 6:35 am in reply to: BuddyPress Profile Visibility Manager – Admin Access #15162
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 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
BrajeshHi 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
BrajeshHi 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- Brajesh Singh on May 17, 2018 at 2:37 pm in reply to: Buddypress Default Landing Page Based on Member Type #15154
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 - Brajesh Singh on May 17, 2018 at 2:35 pm in reply to: [Resolved] Ban Registration Domain wildcards? #15153
You are welcome. Marking it as resolved.
Regards
Brajesh