BuddyDev

Search

Replies

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on #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

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on #53161

    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
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on #53159

    Hello 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
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on #53149

    Hello Cameron,

    Thank you for the acknowledgement. I am glad that you resolved it on your own.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on #53147

    Hello 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

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on #53145

    Hello Cameron,

    Thank you for the acknowledgement. I am glad that the issue is resolved.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on #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

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on #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

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on #53136

    Hello Cameron,

    Please check the following screenshot. is this what you are looking for?

    https://ibb.co/RHNzMV3

    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

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on #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