BuddyDev

Search

Replies

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Customizing the widget #51231

    Hello Chris,

    Welcome to the BuddyDev Forums. Please share your website link so that I can share the CSS rules.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Mentions in Lightbox not auto-populating #51230

    Hello,

    Sorry for the inconvenience. I will check and get back to you soon.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Buddypress Activity plus post limit #51229

    Hello,

    Thank you for the acknowledgement. Please let me know if after you try it.

    Happy Holidays.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Profile visibly not hiding profiles #51206

    Hello,

    Sorry for the inconvenience. Please try the following option:

    1. List in members directory?: It will show/hide the member on the directory page.
    2. List in member search?: It will show/hide the member in the search results from the directory page.

    Please give a try.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Search by User Meta in Directory? #51203

    Hello Brandi,

    Thank you for posting. There is a plugin which allows member to search based on their profile data. Please check and let me know if it will help you or not.

    https://wordpress.org/plugins/bp-profile-search/

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Buddyblog pro and buddypress 12.0.0 beta 1 #51202

    Hello Tosin,

    Please give it a try after disabling the custom code. There might be a chance that any custom code is causing the issue. If the persists, try a fresh WordPress installation with your tab configuration.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    Hello Rudolf,

    Thank you for the acknowledgement. I am glad that I could help you.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Can’t edit gallery or picture info (title, description) #51200

    Hello,

    Thank you for creating a new topic for BP 12.0 compatibility. We will update you as soon as the compatibility is added to the MediaPress.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Member Gallery Names #51199

    Hello

    To work on shortcode as well. Use the following code:

    
    
    add_action( 'mpp_before_gallery_entry', 'buddydev_modify_gallery_title' );
    add_action( 'mpp_before_gallery_shortcode_entry', 'buddydev_modify_gallery_title' );
    remove_action( 'mpp_after_gallery_entry', 'buddydev_modify_gallery_title', 10 );
    remove_action( 'mpp_after_gallery_shortcode_entry', 'buddydev_modify_gallery_title', 10 );
    
    function buddydev_modify_gallery_title() {
    	add_filter( 'mpp_get_gallery_title', function ( $title, $gallery_id ) {
    
    		if ( mpp_is_wall_gallery( $gallery_id ) ) {
    			$gallery = mpp_get_gallery( $gallery_id );
    
    			if ( 'groups' === $gallery->component ) {
    				$title = sprintf( '%s wall gallery', bp_get_group_name( $gallery->component_id ) );
    			} else {
    				$title = sprintf( '%s wall gallery', bp_core_get_user_displayname( $gallery->user_id ) );
    			}
    		}
    
    		return $title;
    	}, 10, 2 );
    }
    
    

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    Hello Rudolf,

    I have updated the plugin. Please upgrade your plugin to the latest version i.e. ‘1.0.7’ version and give it a try.

    Regards
    Ravi