BuddyDev

Search

Replies

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Predefined user gallery with display name #43867

    Hello Jacob,

    Please try the following code after removing the existing code:

    https://gist.github.com/raviousprime/6493c7e264154a40e740b0b0e749e996

    It will create a gallery for users with display names, restrict them from deleting them or modifying gallery titles.

    Please make sure the meta key “_mpp_predefined_gallery_photo_1” does not exist for the user you are testing.

    Regards
    RAvi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: BuddyPress Xprofile Custom Field Types: Tags field #43864

    Hello Scoob

    Welcome to the BuddyDev Forums. I will check and will get back to you within 24 hrs.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Custom post types #43863

    Hello Yume,

    Thank you for the acknowledgement. For custom post-type, this plugin works just normal as a normal WordPress post. Please enable settings for Post title, Post content under Settings > BP Profanity filter.

    You can use the function with the name “bp_profanity_filter_get_parsed_content” on advanced custom fields to get the parsed content.

    Regards
    Ravi

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

    Hello Brian,

    Thank you for posting. We can not modify button text contextually on the user or group pages. But you can use the following code to rename it on the activity directory page.

    
    add_filter( 'bpmts_report_button_args', function ( $args ) {
    
    	// If not any directory page return args.
    	if ( ! bp_is_activity_directory() ) {
    		return $args;
    	}
    
    	$args['label'] = __( 'Feedback' );
    
    	return $args;
    } );
    
    

    We can not modify this on your app as that is a different environment. Please check.

    Regards
    Ravi

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

    Hello Torben,

    Sorry for the inconvenience. BuddyBoss does offer custom settings of info in Header as will Directory. You can check these settings under Settings > Profile > Profile Header > Elements. Please check.

    Please contact them as they can assist you better with this requirement.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Predefined user gallery with display name #43860

    Hello Jacob,

    Thank you for the acknowledgement. I will check and will update you within 24 hrs.

    Regards
    Ravi

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

    Hello Brian,

    Thank you for the acknowledgement. Are you able to locate the reply button in the activity stream?. My code works with the reply button and does not hide the comment button.

    Please share the screenshot of the buttons you are referring to so that I can have a clear view.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Custom post types #43857

    Hello Yume,

    Welcome to the BuddyDev Forums.

    Which plugin are you are referring to?. Is it BuddyBlog Pro for custom post type and BuddyPress Profanity filter plugin for profanity?.

    Please let me know so that I can help.

    Regards
    Ravi

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

    Hello Anjan,

    Thank you for the detailed reply. You do not need BP_User_Query in favour of the BuddyPress Members loop. You can achieve the same thing we members’ loop.

    Member’s loop does support Xprofile query and meta query in case of meta_query it does support only single key.

    Please check

    Regards
    Ravi

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

    Hello Renaat,

    Thank you for the acknowledgement. I am glad that you have resolved your problem on your own.

    Regards
    Ravi