BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25057
    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: 25057
    Brajesh Singh on in reply to: [Resolved] Demo not loading Community Builder Pro #53153

    Thank you Kim. Appreciate it.

  • Keymaster
    (BuddyDev Team)
    Posts: 25057

    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: 25057
    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: 25057

    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: 25057
    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: 25057
    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

  • Keymaster
    (BuddyDev Team)
    Posts: 25057

    Hi Azra,
    Thank you for your post.

    1. You do not need simple front end post plugin with BuddyBlog pro.

    2. It seems the BuddyBlog pro setting is correct. If your users have issues with default, It is probably one of the other plugins or theme causing it. BuddYblog Pro uses wp_editor to delegate to WordPress for showing the rich text editor.

    My sugegstion would be to test by switching theme/activating/deactivating plugins. I do not think the preference has any effect on front end.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25057

    Hi Michel,
    Thank you for the reply.

    can you please share more details about your post type. Are you using ‘post’ post type or a different one. is that post type public or private?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25057

    Hi Stephanie,
    Thank you for the reply.

    1. Deleting a plugin from plugin folder is safe. WordPress will not find the plugin(may show you a notice on plugins screen if the plugin was active when you deleted it).

    2. Some of the plugins may create cache etc but the Conditional profile field does not. So, you can delete it without any worry of leftover(there are couple of xprofile meta fields which will remain).

    Regards
    Brajesh