-
nobody replied to the topic Add additional text in Register form in the forum How-to & Troubleshooting 1 year, 6 months ago
It is useful for me, thank you @raviousprime
-
nobody replied to the topic move nav menu ABOVE cover image in the forum How-to & Troubleshooting 1 year, 9 months ago
hi.. @venutius
what if I want to invoke the profile menu navigation to the right side of the avatar ? -
nobody replied to the topic How do you add the BuddyPress notification count on the menu item? in the forum How-to & Troubleshooting 1 year, 9 months ago
hi @sosialc
where is the code placed? -
nobody replied to the topic Solved – Need to restrict my users to join multiple groups, in the forum How-to & Troubleshooting 1 year, 9 months ago
I tried using this code :
add_action( ‘groups_join_group’, ‘venutius_group_join_filter’, 10, 2 );
function venutius_group_join_filter( $group_id, $user_id ) {
global $bp;if ( current_user_can( ‘manage_options’ ) ) {
return;
}$membership_total = count( BP_Groups_Member::get_membership_ids_for_user( $user_id ) );
if (…[Read more]
-
nobody replied to the topic Solved – Need to restrict my users to join multiple groups, in the forum How-to & Troubleshooting 1 year, 9 months ago
hai @venutius
Does this code work to Nouveau template ? -
nobody started the topic display user photos in the forum How-to & Troubleshooting 1 year, 9 months ago
i have a code display a name user login on menu :
but, i having trouble displaying profil photos om menu to, anyone can help ?add_filter( ‘wp_nav_menu_objects’, ‘username_in_menu_items’ );
function username_in_menu_items( $menu_items ) {
foreach ( $menu_items as $menu_item ) {
if ( strpos($menu_item->title, ‘#profile_name#’) !==…[Read more]
@iduy
Active 1 year, 6 months ago