BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25218
    Brajesh Singh on in reply to: [Resolved] Profanity filter causing fatal error #53170

    Hi Shaun,
    Thank you for using the plugin.

    I am sorry for the experience. I am looking into the plugin. Will update you in 1 hour.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25218
    Brajesh Singh on in reply to: Integrate newsletter system on bp user profile #53157

    Hi Alex,
    I am sorry, We lack the time to assist with a customization outside our plugins scope.

    I will suggest trying codeable or upwork for the same.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25218

    Hi Tariq,
    Thank you for using the plugin.

    It is not feasible to provide a consistent experience for it. The only filter available for filtering user part is bp_core_get_userlink which is generic and is used everywhere on the site.

    That makes it not suitable for use. I am unable to see a proper way(It can still be achieved but not in a predictable way for future).

    If you still want to proceed, Please let me know and we will share some snippet. Please do note that we won’t be supporting it beyond that.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25218
    Brajesh Singh on in reply to: Random posts on homepage buddypress with youzify #53154

    Hi,
    At the moment, BuddyPress does not seem to be supporting random ordering of the activity. If you pass an unknown type to the ‘order_by’ it falls back to date created.

    I will suggest checking with Youzify to see if they can share with you something specific to their plugin/code.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25218
    Brajesh Singh on in reply to: [Resolved] Demo not loading Community Builder Pro #53153

    Thank you Kim. Appreciate it.

  • Keymaster
    (BuddyDev Team)
    Posts: 25218

    Hi Michael,
    I am sorry for not being available last week.
    Your issue is related to configuration only. It can be fixed as specified in my previous post.

    If feasible, Please share temporary credentials for accessing the settings and I can update the settings for you.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25218
    Brajesh Singh on in reply to: BP xprofile fields plugin – meta keys #53118

    Hi Ahmed,
    The author context checks if we are inside a post loop. If yes, It uses the post author.

    I am sorry, I haven’t tested it with elementor. I don’t see any reason for conflict though. It should work fine.

    Yes, author is the correct context for you.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25218

    Hi Azra,
    Thank you for sharing the code.

    This is hackish way of resolving it without identifying the actual issue. I do understand we all have time constraints, so I am happy that it got the editor working for you.

    PS:- The quick tags can be disabled by filtering on wp_editor_settings and that would leave the visual mode only.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25218
    Brajesh Singh on in reply to: Custom User Metadata shortcode does not work on tabs #53116

    Hi Mike,
    You will meed something like this

    
    function my_assessment_score( $atts ) {
    // Parse the shortcode attributes
    	$atts = shortcode_atts( array(
    		'post_id' => 0, // Default to 0 if no post ID is provided
    	), $atts, 'assessment_score' );
    
    // Determine the post ID to use
    	$post_id = $atts['post_id'] ? intval( $atts['post_id'] ) : get_the_ID();
    
    // Return the assessment score for the specified post ID
    	return $post_id ? get_post_meta( $post_id, 'assessment_score', true ) : '';
    }
    
    add_shortcode( 'assessment_score', 'my_assessment_score' );
    
    

    Also, for the profile tabs, if you do not pass the post id, It will not show anything.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25218
    Brajesh Singh on in reply to: [Resolved] Demo not loading Community Builder Pro #53115

    Hi Kim,
    I am sorry, the demo got disabled due to our hosting changes.

    I will update the theme page to reflect it. The theme is not fully compatible with BuddyPress 14.0(needs BP classic) and we don’t have a long term plan for now.

    I will suggest looking for other options.

    Regards
    Brajesh