Replies
- Ravi on August 22, 2023 at 6:30 pm in reply to: [Resolved] Pay Per Post Publish Articles with the status “Awaiting” #50284This reply has been marked as private.
- Ravi on August 22, 2023 at 6:24 pm in reply to: BuddyPress Rate Limit User Activity compatibility with BuddyBoss ? #50283
Hello,
Sorry for the delayed reply.
I have checked with PHP 8.1 and It is working fine. Please give it a try.
Regards
Ravi - Ravi on August 21, 2023 at 4:49 pm in reply to: [Resolved] Pay Per Post Publish Articles with the status “Awaiting” #50264This reply has been marked as private.
Hello Bruno,
Please try the following code in your bp-custom file.
add_filter( 'bp_get_group_join_button', function ( $args, $group ) { // Replace with your group ids. $groups_with_disable_leave_btn = array( 5, 36 ); if ( ! empty( $group->is_member ) && ! empty( $group->id ) && in_array( $group->id, $groups_with_disable_leave_btn ) ) { $args = array(); } return $args; }, 10, 2 );
For more info: https://buddydev.com/docs/buddypress-guides/what-is-bp-custom-php/
Regards
Ravi- Ravi on August 21, 2023 at 3:48 pm in reply to: BuddyPress Rate Limit User Activity compatibility with BuddyBoss ? #50261
Hello,
Thank you for posting. Yes, The plugin “BuddyPress Rate Limit User Activity” works with BuddyBoss. I have checked with version “BuddyBoss PlatForm 2.4.0”
Regards
Ravi - Ravi on August 21, 2023 at 3:40 pm in reply to: [Resolved] Add Read More link to buddypress activity excerpt #50260
Hello Tosin,
Try action ‘bp_activity_entry_content’ and fix your post_id.
$post_id = $activity->primary_link;
Regards
Ravi - Ravi on August 17, 2023 at 2:19 pm in reply to: [Resolved] Buddyblog pay per post improvement/suggestion #50234
Hello Tosin,
Yes, You can upgrade to the latest version. Please give it a try.
Regards
Ravi - Ravi on August 17, 2023 at 2:40 am in reply to: [Resolved] Buddyblog pay per post improvement/suggestion #50229
Hello Tosin,
Sorry for the delayed reply. As Pay Per Post is not in ours priority list and we have not allotted any time frame for this right now. But in future we will look for the scope and will let you know.
Regards
Ravi - This reply has been marked as private.
- This reply has been marked as private.