Replies
- John Elmer on October 25, 2021 at 12:47 pm in reply to: Hide the profile tabs for the users who did not setup their profile #41236
Hi Brajesh,
Yes, It is the Profile field group.
Thank you!
- John Elmer on October 23, 2021 at 1:49 am in reply to: disable the rtmedia comment action in the post until the users are become friend #41177This reply has been marked as private.
- John Elmer on October 23, 2021 at 1:38 am in reply to: disable the rtmedia comment action in the post until the users are become friend #41176
Hi Brajesh,
I really appreciate your help.Looks like is rtmedia_update
In their documentation they have this:
Adding rtMedia updates to activity show dropdown
Notes: Starting version 4.2.1, this functionality does not require a filter as this code has been moved to rtMedia CoreIf you want to add or rename rtMedia updates in activity’s show dropdown, use the following piece of code in your function.php file:
add_filter(‘bp_get_activity_show_filters_options’, ‘add_media_show_filter’, 10, 2);function add_media_show_filter( $filters, $context ){
$filters[‘rtmedia_update’] = ‘rtMedia Updates’;
return $filters;
}
ORUse this code: if you are using old buddypress templates in your theme.
add_action( ‘bp_activity_filter_options’, ‘rtmedia_update_filter’ );
function rtmedia_update_filter() {
echo ‘<option value=”rtmedia_update”>rtMedia Updates</option>’;
}Thank you so much!
- John Elmer on October 23, 2021 at 12:37 am in reply to: [Resolved] disable the comment action until the users are become friends #41156
Wow Brajesh! You are a rock!
I know you because of your picture from bbpress forum and I am feeling so lucky to have you here!
THANK YOU SO MUCH!
YOU ARE SUPER SUPER SUPER HELPFULL!
- John Elmer on October 22, 2021 at 5:22 pm in reply to: [Resolved] disable the comment action until the users are become friends #41142
Hi Guys!
Is possible to disable the comment action until the users are become friends? I am using rtmedia.
THANK YOU!!!