Filters the group name output. By default, the group name is output as is.
You can use this filter to wrap the group name into a custom tag, for example :
add_filter( 'joli_faq_seo_faq_group_name', function($group_name){
//Wraps group name between H2 tags
returnĀ '<h2>' . $group_name . '</h2>';
});