@d8vjork
8 years, 5 months ago
“Espejo” as a mirror (in Spanish).
Great news! I’m testing and upgrading my production BP site 😛
Now works fine. Thanks r-a-y.
Yes, of course. I add this code on theme functions.php file:
function bp_add_group_types() { bp_groups_register_group_type( 'radio', array( 'labels' => array( 'name' => 'Radios', 'singular_name' => 'Radio' ) ) ); bp_groups_register_group_type( 'community', array( 'labels' => array( 'name' => 'Comunidades', 'singular_name' => 'Comunidad' ) ) ); bp_groups_register_group_type( 'team', array( 'labels' => array( 'name' => 'Equipos', 'singular_name' => 'Equipo' ) ) ); } add_action( 'bp_groups_register_group_types', 'bp_add_group_types' );