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!