BuddyDev

Search

Replies

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Fatal Error #40006

    Hello Marcos,

    Sorry for the inconvenience. Please do let me know are you using BuddyPress or BuddyBoss Platform. Also, Version of “BuddyPress Xprofile Custom Field Types”.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Donation feature for buddypress #40002

    Hello Tosin,

    Yes, You have to install the plugin in order to use this shortcode.

    On single-user screen you can use shortcodes like:

    Replace id with your band detail field group id.

    
    
    [bp-shortcodes-profile context=display group_id=4]
    
    

    On the member directory and post screen, you have to provide shortcode attributes dynamically.

    Regards
    Ravi

    • This reply was modified 3 years, 12 months ago by Ravi.
  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Plugin Compatibility Issue #40001

    Hello Scott,

    Thank you for the acknowledgment. Please replace the old code with the following code:

    
    
    /**
     * Apply filters
     */
    function buddydev_apply_anonymous_activity_filter() {
    	add_filter( 'bp_anonymous_is_valid_screen', '__return_true' );
    }
    
    add_action( 'bp_activity_stream_shortcode_before_generate_content', 'buddydev_apply_anonymous_activity_filter' );
    add_action( 'wp_ajax_bpas_load_activities', 'buddydev_apply_anonymous_activity_filter', 9 );
    
    

    Give it a shot.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    Hello Nifty,

    Thank you for the acknowledgment. I am glad that I could help.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Donation feature for buddypress #39988

    Hello Tosin,

    Please check the following code:

    https://github.com/buddydev/bp-shortcodes/blob/master/src/shortcodes/profile/class-profile-shortcode.php

    It allows displaying user data based on profile field group id. Please let me know if it helps or not.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    Hello Nifty,

    Sorry for the inconvenience. It should be on plugin deletion. We have pushed a release with this issue fixed. Please upgrade your plugin and check.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: [Resolved] Plugin Compatibility Issue #39985

    Hello Scott,

    Please try the following code it will let you post anonymous activity through plugin shortcode. But it will only work with the BuddyPress Legacy template.

    
    
    add_action( 'bp_template_redirect', function () {
    
    	// Replace id with your shortcode page id.
    	if ( is_page( 110 ) ) {
    		add_filter( 'bp_anonymous_is_valid_screen', '__return_true' );
    	}
    } );
    
    

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    Hello Philip,

    Sorry for the delayed reply. We added support for the BuddyBoss. Please download the latest version of the plugin and give it a shot.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115

    Hello Torben,

    Thank you for the kind words. I am glad that I could help.

    Regards
    Ravi

  • Keymaster
    Level: Yogi
    (BuddyDev Team)
    Posts: 3115
    Ravi on in reply to: Error HTTP when trying to upload a file #39964

    Hello Dave,

    Thank you for the acknowledgment. But this does not make the issue clear. Please try to debug it more to get the actual error. Take the reference from the following document and post the actual error.

    https://wordpress.org/support/article/debugging-in-wordpress/

    Regards
    Ravi

    • This reply was modified 3 years, 12 months ago by Ravi.