Replies
- Ravi on September 19, 2024 at 8:15 am in reply to: [Resolved] Profanity filter causing fatal error #53172
Hello Shaun,
Sorry for the inconvenience. Could you please provide details regarding the field types you are using? It appears that the issue may be related to a specific multi-field that submits values in an array during form submission. I am currently investigating this matter on my development server for further testing.
Regards
Ravi Hello Kokiri,
Welcome to the BuddyDev forums. Please do let me know which version of the plugin you are using i.e. BuddyBlog or BuddyBlog Pro ( Premium version ) so that I can help you.
Regards
RaviHello Stijn,
Sorry for the inconvenience. This is for BuddyPress Message Privacy. Please let me know which version of the plugin you are using and share the error log for the crash report due to the plugin so that I can help. For theme related issue @sbrajesh sir will guide you.
Please refer this resource if you do not know how to get the error log.
https://developer.wordpress.org/advanced-administration/debug/debug-wordpress/Regards
RaviHello Cameron,
Thank you for the acknowledgement. I am glad that you resolved it on your own.
Regards
RaviHello Cameron,
Thank you for reaching out. The rendering of the blogs page is managed by the theme, and unfortunately, we do not have control over its layout or functionality. For assistance with this issue, we recommend contacting the theme author directly, as they can better assists you.
Regards
Ravi- Ravi on September 12, 2024 at 4:00 pm in reply to: [Resolved] BuddyBlog – Post Listing w/ BuddyBoss Pro #53145
Hello Cameron,
Thank you for the acknowledgement. I am glad that the issue is resolved.
Regards
Ravi - Ravi on September 12, 2024 at 3:58 pm in reply to: [Resolved] Categories – Dropdown Rather than Select #53144
Hello Cameron,
Thank you for the acknowledgement. I am glad that I could help.
Note: Please don’t use <? ?> it is shorthand for php. Use like the following
<?php // Your code goes here.
Regards
Ravi - Ravi on September 12, 2024 at 12:09 pm in reply to: [Resolved] Categories – Dropdown Rather than Select #53139
Hello Cameron,
Please try the following code it will list all taxonomies in dropdown.
add_filter( 'buddyblog_post_form_settings', function ( $settings ) { if ( buddyblog_get_option( 'enable_taxonomy' ) ) { $taxonomies = array(); $tax = buddyblog_get_option( 'allowed_taxonomies' ); if ( ! empty( $tax ) ) { foreach ( (array) $tax as $tax_name ) { $taxonomies[ $tax_name ] = array( 'taxonomy' => $tax_name, 'view_type' => 'dd', ); } } if ( ! empty( $taxonomies ) ) { $settings['tax'] = $taxonomies; } } return $settings; } );
Place this code in your ‘bp-custom.php’ file.
For ref: https://buddydev.com/docs/buddypress-guides/what-is-bp-custom-php/
Regards
Ravi - Ravi on September 11, 2024 at 7:07 am in reply to: BuddyBlog w/ BuddyBoss – Blog BG Color under Profile #53136
Hello Cameron,
Please check the following screenshot. is this what you are looking for?
If yes, You can use the following CSS rule
body.buddyblog .item-body-inner .post { background: var(--bb-content-background-color); border: 1px solid var(--bb-content-border-color); border-radius: var(--bb-block-radius); margin-bottom: 30px; padding: 0 30px; }
You can place this code in backend Apperance > Customize > Additional CSS setting.
Regards
Ravi - Ravi on September 10, 2024 at 9:03 am in reply to: Change background color of members loop label #53134
Hello Alex,
Thank you for the acknowledgement. The BuddyPress plugin do not add any specific class as per selected filter to the element. That’s why it is difficult to implement i.e. to add a background-color based on filter selected. The plugin do not provide any direct way to implement this.
Regards
Ravi