Replies
- Brajesh Singh on August 3, 2017 at 2:53 pm in reply to: [Resolved] Automatically join groups on registration #10176
Hi Jay,
Sorry to inform this at the last moment. The plugin is delayed by another 2 days. Thank you.
have a nice time there.I will be available before that.
Regards
Brajesh- Brajesh Singh on August 3, 2017 at 2:52 pm in reply to: limit gallery link on members profiles #10174
You have it correctly there.
I need to check if it works in functions.php or we will need bp-custom.php
Will post back later today.
Hi,
I am looking at the translation and will let you know.For adding icon, please use css. You can certainly add icons with that.
- Brajesh Singh on August 3, 2017 at 2:49 pm in reply to: [Resolved] How to approve photos before be published in user's profile? #10172
I am very sorry but this plugin is still delayed and I am not sure if we will be able to complete it even by next week.
The original one we had is undergoing rewrite but due to the new BuddyPress release, It has been put on hold to update other plugins.
I will inform you asap we have it ready.
- Brajesh Singh on August 3, 2017 at 2:45 pm in reply to: [Resolved] Error generate by wall-photo-gallery #10171
Hi Rossini,
Is there any chance that you have a page set as site homepage? WP_Query throws this on a page is set as home page(and the query is accessed in non conventional way).We have plans to fix it but it is just a notice and you can safely ignore it for now.
To keep track of it, please use this ticket.
https://github.com/buddydev/mediapress/issues/47 - Brajesh Singh on August 2, 2017 at 2:47 pm in reply to: limit gallery link on members profiles #10164
Please link me to the code.
- Brajesh Singh on August 2, 2017 at 1:08 pm in reply to: limit gallery link on members profiles #10161
Hi,
It most probably caused a fatal error due to syntax.Please remove it and post the complete functions.php on https://pastebin.com/
I will update it for you to avoid any syntax issue.
Regards
Brajesh - Brajesh Singh on August 2, 2017 at 12:12 pm in reply to: limit gallery link on members profiles #10159
Hi Patti,
Please remove the old code and add this code at the bottom of the file.
/** * Example: Disable MediaPress gallery for S2 members level 0 * * @param bool $is_active is MediaPress active. * @param string $component component name(members, groups,sitewide etc). * @param int $component_id context items id(user id, group id etc). * * @return bool */ function mpp_custom_disable_for_users( $is_active, $component, $component_id ) { // only for members component. if ( 'members' !== $component ) { return $is_active; } // do not allow zero level to have the gallery. if ( function_exists('current_user_is' ) && current_user_is( $component_id, 's2member_level0' ) ) { return false; } return $is_active; } add_filter( 'mpp_is_enabled', 'mpp_custom_disable_for_users', 10, 3 );Does it solve the problem?
Thank you
Brajesh Hi Dwi,
I am sorry for the inconvenience.Can you please ask Shane if he is filtering on “bp_after_has_members_parse_args”
We are filtering on it for 2 case:-
1. When you setup some member type to be excluded, we filter to add member_type__not_in and include parameters
2. When clicking on member type name, It is again filtered to have only specific member type.Can you please post me the code used for directory filtering.
Also, can you please try by disabling the buddyblock and see if it working correctly?I am not sure where the issue lies yet(bpmtp or the buddyblock), Please let me know the details and I will assist you to resolve it.
Regards
Brajesh