Replies
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
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 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
RaviHello 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
RaviHello 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
RaviHello 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