you will find other action hook in bp-legacy/buddypress/groups/single/group-header.php
In order of appearance:
do_action( 'bp_before_group_header' );
do_action( 'bp_after_group_menu_admins' );
do_action( 'bp_before_group_menu_mods' );
do_action( 'bp_after_group_menu_mods' );
do_action( 'bp_before_group_header_meta' );
do_action( 'bp_group_header_actions' );
do_action( 'bp_group_header_meta' );
do_action( 'bp_after_group_header' );
do_action( 'template_notices' );
thanks for the help
but i want it right after the title
see page:
http://beyondbitcoinx.net/delegates/delegate-charity/
You’re using hueman theme and you have to modify page-title.php to alter the template.
Make a child theme and do your changes in a copy of that file.
For example:
<h2><?php echo alx_page_title(); do_action('what_ever'); echo ' my_text_as_example'; ?></h2>
thank you …again
now i know what to do