Replies
- 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 - Brajesh Singh on May 17, 2018 at 2:35 pm in reply to: [Resolved] Redirect Page based on Member Type #15152
Hi Sujee,
In next 2-3 days,I will be updating our member types plugin and adding the optiont o dynamically redirect based on member type.I will link you after the update.
Thank you
Brajesh - Brajesh Singh on May 17, 2018 at 2:23 pm in reply to: Issue/Bug with plugin BuddyPress Profile Visibility Manager #15151
Hi Thorsten,
I did not check it in combination with the W3 Total Cache. Please allow me to check that again.Regards
Brajesh - Brajesh Singh on May 16, 2018 at 4:23 pm in reply to: [Resolved] Ban Registration Domain wildcards? #15121
Thank you for the patience.
I have added wildcard support now.Please use 1.0.3
https://buddydev.com/plugins/wp-ban-registration-domain/Please do note that *.example.com will match all sub domains of example.com but not example.com. You will need to add the main site as another entry.
Also *some* will expand to some@anydomain.com, awesome@anydomain.com or xyz@awesome.com and so on.
Regards
Brajesh - Brajesh Singh on May 16, 2018 at 6:30 am in reply to: [Resolved] .wpress file size is exceeding #15120
You are welcome.