Viewing 2 replies - 1 through 2 (of 2 total)
  • Salut sielwolf,

    Sorry for this late reply, you can achieve this by filtering the bowe_codes_groups_tag filter from the functions.php file of your active theme :

    function sielwolf_add_group_desc( $extra_html ) {
    	return '<p>'. bp_get_group_description() .'</p>';
    }
    
    add_filter( 'bowe_codes_groups_tag', 'sielwolf_add_group_desc', 10, 1 );

    If you want to apply to featured groups, you can also add :
    add_filter( 'bowe_codes_groups_tag_featured', 'sielwolf_add_group_desc', 10, 1 );

    Thread Starter sielwolf

    (@sielwolf)

    Hi Mathieu !
    thanx a lot for this feature.
    I’ll end up having a bowe code in my own name ??

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Add 'desc' to BC_groups’ is closed to new replies.