Replies
- Ravi on May 9, 2023 at 11:31 am in reply to: [Resolved] Append extra params to member activation link send via email #49426Hello Sarwar, Thank you for the acknowledgement. I am glad to help you. Regards 
 Ravi
- Hello Jose, - Thank you for posting. Are you using the “BuddyPress User Profile Tabs Creator Pro” plugin? or are you trying in a different way? please let me know. - Regards 
 Ravi-  This reply was modified 2 years, 5 months ago by  Ravi. Ravi.
 
-  This reply was modified 2 years, 5 months ago by 
- Ravi on May 9, 2023 at 9:50 am in reply to: [Resolved] Append extra params to member activation link send via email #49418Hello Sarwar, Welcome to the BuddyDev Forums. You can try the following code: add_filter( 'bp_after_send_email_parse_args', function ( $args ) { if ( isset( $args['tokens'] ) && isset( $args['tokens']['activate.url'] ) ) { $args['tokens']['activate.url'] = add_query_arg( array( 'key1' => 'key1', 'key2' => 'key1213', ), $args['tokens']['activate.url'] ); } return $args; } );Regards 
 Ravi
- Hello Van, - Please look at the following screenshot: - Please give it a try. - Regards 
 Ravi
- Hello Derek, - You’re welcome! Don’t hesitate to reach out if you have any further questions or need additional assistance. Good luck with your project! - Regards 
 Ravi
- Hello Derek, - Welcome to the BuddyDev Forums. Yes, it can be possible with some lines of code - add_filter( 'mpp_user_can_upload', function ( $can_do, $component, $component_id, $gallery ) { // If not logged in return. if ( ! is_user_logged_in() ) { return $can_do; } $limit_count = 4; $user_media_count = mpp_get_user_media_count( bp_loggedin_user_id() ); if ( $user_media_count && $user_media_count >= $limit_count ) { $can_do = false; } return $can_do; }, 10, 4 );- You can further alter this code by based on component, status or media type. Look mpp_get_object_count supported args. - You can place this code in your ‘bp-custom.php’ file. Please give it a try. - To know what is ‘bp-custom.php’ file look here 
 https://buddydev.com/docs/buddypress-guides/what-is-bp-custom-php/- Regards 
 Ravi
- Ravi on April 25, 2023 at 8:29 am in reply to: posts are not shown in post list (e.g. published) #49304This reply has been marked as private.
- Ravi on April 24, 2023 at 4:17 pm in reply to: posts are not shown in post list (e.g. published) #49297Hello Franz, Sorry for the inconvenience. I am assuming you are using the BuddyBlog Pro plugin. Please navigate to Admin Dashboard > BuddyBlog > Settings > Post ( your post type ) > Misc Settings and locate “Should tab post lists show only the posts created by BuddyBlog(front end)?”. please set it to No and then recheck. Please let me know if it helps or not. Regards 
 Ravi
- Hello Jose, - Thank you for the details. - I am not aware of any solution to restricting tags to specific forums/groups. I will suggest contacting BuddyBoss support for the same as the forums are part of the BuddyBoss Platform plugin. - Regards 
 Ravi
- Hello, - Please check the following video for the issue: 
 https://www.awesomescreenshot.com/video/16732248?key=a1b67331d9d3f86aa4f7cec581eda32b- Note: Please remove all the Elementor widgets from the ‘Associates’ page. - Regards 
 Ravi
