Replies
- Brajesh Singh on February 12, 2022 at 11:20 pm in reply to: [Resolved] Suspended users able to access information through API if already logged in #43146
Hi Nifty,
Thank you for the patience.The JWT plugin uses determine_current_user hook to mark a user as logged and the plugin does not give us any option to check for external conditions. Our only solution is to hook to the same filter at a lower priority. I am not very comfortable with this idea as a general solution.
Still, you can put this code and it will work.
/** * Disallow current to be accepted as logged if they are suspended. */ add_filter( 'determine_current_user', function ( $user_id ) { if ( ! $user_id || ! function_exists( 'bpmts_is_user_suspended' ) ) { return $user_id; } if ( bpmts_is_user_suspended( $user_id ) ) { return false; } return $user_id; }, 100 );Regards
Brajesh - Brajesh Singh on February 10, 2022 at 5:24 pm in reply to: [Resolved] Buddyblog Pro – allow user to select only one category when posting #43129
Hi Niculae,
Thank you for confirming.Regards
Brajesh - Brajesh Singh on February 10, 2022 at 5:23 pm in reply to: Want to publish PODCAST through Buddyblog Pro Form #43128
Hi Sachin,
can you confirm that the player uses post type for storing the media and data etc?Regards
Brajesh - Brajesh Singh on February 10, 2022 at 5:22 pm in reply to: [Resolved] BuddyDev Username Availability Not working with BuddyBoss theme #43127
Hi Tarak,
Nickname and usernames are different. I am sorry, this plugin does not work for nickname.
Regards
Brajesh Hi Becca,
Thank you for purchasing from us.
I am sorry for the experience.I have mailed you the links to download your product.
Please let me know if you are able to access them now or not?
Regards
Brajesh- Brajesh Singh on February 10, 2022 at 10:51 am in reply to: Want to publish PODCAST through Buddyblog Pro Form #43121
Hi Sachin,
Thank you for your interest in the plugin.The plugin allows you to create posts. We don’t have any specific option currently for Podcast.
If you are able to use a 3rd party plugin for podcasting with WordPress, Please let me know, we can look at it and let you know if it will allow adding from the front end or not?
Regards
Brajesh - Brajesh Singh on February 10, 2022 at 10:39 am in reply to: [Resolved] Buddyblog Pro – allow user to select only one category when posting #43119
Please upgrade. It is already available.
Let me know if it works as expected or not?
Regards
Brajesh - Brajesh Singh on February 10, 2022 at 10:32 am in reply to: [Resolved] Buddyblog Pro – allow user to select only one category when posting #43117
Hi Niculae,
thank you.
You are right. There was a bug. It was not enforcing the taxonomy even if it was required. It is fixed in 1.2.4.Regards
Brajesh - Brajesh Singh on February 9, 2022 at 11:59 pm in reply to: [Resolved] Buddyblog Pro – allow user to select only one category when posting #43106
Hi Niculae and Tosin,
I have added the support for enforcing single term selection with post.
You can edit a form and under Taxonomy settings, you will find the “View” option.
Please give it a try.
Regards
Brajesh Hi,
Please have a look
https://i.ibb.co/B6vkvnF/Selection-438.pngIf the option is not visible, Please try saving options on that page and checking again.
Regards
Brajesh