Replies
- Brajesh Singh on January 30, 2019 at 12:42 am in reply to: [Resolved] Need to delete a textline in BuddyBlog plugin #20574
Hi Daniel,
I have looked at your site today.1. I see that New Post tab is disabled
2. I only see the add new post link(inside template).Like I said earlier, a better strategy will be to redirect instead. I will share the code today for redirecting the user. If possible, Please tell me how your other plugin expects the post id to be passed for editing.
Regards
Brajesh Hi Herve,
It is a common issue on BuddyPress. There are bots to do it.
This is why we created Friendship restrictions plugin.You do have our membership, so I will suggest using
https://buddydev.com/plugins/buddypress-friendship-restrictions/
Just rate limit the number of requests a user can send per hour and it will limit the damage.
Regards
Brajesh- Brajesh Singh on January 30, 2019 at 12:33 am in reply to: [Resolved] Blog Categories for Groups not showing posts in Blog page #20572
Hi George,
My apologies for the inconvenience.In the last update, we forced the query to show posts which were published from current group only.
We did it to resolve the issue when 2 groups share same terms.
Is there a chance that the posts were not published from group screen?
You can disable the meta query to get it working. The following code should do it.
/** * Disable meta filtering for group id and published fro m front. */ add_filter( 'bcg_get_query', function ( $query_args ) { unset( $query_args['meta_query'] ); return $query_args; } );Regards
Brajesh - Brajesh Singh on January 29, 2019 at 3:26 pm in reply to: Problem with Conditional Profile Fields for BuddyPress on buddypress 4.1.0 #20564
Hi Nate,
Thank you.I a sorry but the plugin will not work. I am not sure if it is your theme or some plugin but the fields on registration form are not using the standard markup(editfield class and other classes etc). The plugin expects those standard classes to work around the condition.
Please try the same with the default WordPress theme and without other plugin modifying registration page.
Regards
Brajesh - Brajesh Singh on January 29, 2019 at 3:12 pm in reply to: Problem with Conditional Profile Fields for BuddyPress on buddypress 4.1.0 #20562
Thank you.
Can you please disable the Perl header Builder plugin temporarily. It is throwing a javascript error and that may cause it.Regards
Brajesh Hi Steve,
I am sorry for the delayed reply.Can you please provide more etails. What kind of issue are you facing?
Thank you
Brajesh- Brajesh Singh on January 29, 2019 at 12:33 pm in reply to: BP Member Types Pro – how to assign member type automatically #20557This reply has been marked as private.
- Brajesh Singh on January 29, 2019 at 12:12 pm in reply to: [Resolved] How to make BP members directory look better on mobile #20555This reply has been marked as private.
- Brajesh Singh on January 29, 2019 at 12:04 pm in reply to: Problem with Conditional Profile Fields for BuddyPress on buddypress 4.1.0 #20554
Hi Nate,
My apologies for the inconvenience.It seems to me your theme is styling the checkbox/radios using javascript.
The Conditional profile fields does not work with custom checkboxes/radios. Please point me to your site and I can check and let you know if your theme is using styled checkboxes/radio or not.
Regards
Brajesh - Brajesh Singh on January 29, 2019 at 11:59 am in reply to: BP Member Types Pro – how to assign member type automatically #20553
You can name the field anything. It is a select/radio field that allows selecting one or more type. You can name it anything you want.
The plugin can not auto update member type based on when a user moves. You will need to handle this case via core or a better strategy is to create member types of these values and let the user update their profile when they move.
A member type can be anything, It is just a way to orgnize your users.
Regards
Brajesh