Limited Support
Our support team is currently on holiday from December 25, 2025 to January 7, 2026, and replies may be delayed during this period.
We appreciate your patience and understanding while our team is away. Thank you for being part of the wpForo community!
Merry Christmas and Happy Holidays! 🎄
Jul 04, 2020 7:42 pm
¿Is there any code or modification for only show mentions and replies?
2 Replies
Jul 06, 2020 9:05 am
Hi @alber,
Yes, you should put this custom code in your current active WordPress functions.php file:
function my_custom_foro_notifications_filter( $args ){
if( !empty($args) ){
$args['types_exclude'] = array('new_like', 'new_up_vote', 'new_down_vote');
}
return $args;
}
add_filter('wpforo_get_notifications_args', 'my_custom_foro_notifications_filter', 10, 1);
How to Easily Add Custom Code in WordPress (without Breaking Your Site)
Jul 06, 2020 8:34 pm
THANKS!