Replies
- Brajesh Singh on September 16, 2024 at 7:09 am in reply to: Add Badge right side of the name in activity fieldhttps://prnt.sc/a4TMoXD0ln-9 #53155
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_userlinkwhich 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 - Brajesh Singh on September 16, 2024 at 6:49 am 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 - Brajesh Singh on September 16, 2024 at 6:43 am in reply to: [Resolved] Demo not loading Community Builder Pro #53153
Thank you Kim. Appreciate it.
- Brajesh Singh on September 16, 2024 at 6:42 am in reply to: BuddyBlog – Display Published Blogs in normal BuddyBoss Theme #53152
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 - Brajesh Singh on September 4, 2024 at 9:43 pm 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,
authoris the correct context for you.Regards
Brajesh - Brajesh Singh on September 4, 2024 at 9:41 pm in reply to: [Resolved] Issue with post_content field for BuddyBlog Pro and BP Simple Front End Post #53117
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_settingsand that would leave the visual mode only.Regards
Brajesh - Brajesh Singh on September 4, 2024 at 9:37 pm in reply to: Custom User Metadata shortcode does not work on tabs #53116
Hi Mike,
You will meed something like thisfunction 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 - Brajesh Singh on September 4, 2024 at 9:32 pm 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 - Brajesh Singh on September 3, 2024 at 4:01 pm in reply to: [Resolved] Issue with post_content field for BuddyBlog Pro and BP Simple Front End Post #53106
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_editorto 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 - Brajesh Singh on September 3, 2024 at 11:42 am in reply to: BuddyBlog – Display Published Blogs in normal BuddyBoss Theme #53101
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