BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25057
    Brajesh Singh on in reply to: Mediapress cover photo upload not saving #55294

    Hi Kim,
    Thank you for your patience.

    I have tested it with BuddyX not BuddyX Pro. The plugin and all features of MediaPress is working if you have BP Classic plugin installed.

    I tested cover update from Profile->Your Galleries->Gallery Name-> Edit Details and then clicking on “Upload New Cover”. It is working for me using BuddyX and latest version of MediaPress(1.5.9.1).

    Can you please help me with the workflow to recreate it.

    PS:- I only have BuddyPress, BP Classic and MediaPress active while testing this.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25057

    Hi Stephanie,
    Thank you for the reply.

    The featured members plugin is not aware of the expirable addon and it seems thee expirable addon did not clear the counts, we will need to update that.

    About the code:- These are part of the plugin. I linked to plugin’s repository. You do not need to do anything as it is already included in the plugin.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25057
    Brajesh Singh on in reply to: Buddyblog assign taxonomy on update #55290

    Hi Tosin,
    I am sorry but I do not understand this part

    I have a custom taxonomy called content_type where by (Sponsored Posts) is a taxonomy option, now ive hidden/excluded this (Sponsored Posts) taxonomy option in the buddyblog settings but im using this code below to auto assign the (Sponsored Posts) taxonomy when a post has been paid for on checkout.

    Please help me understand it clearly(which post type, terms, taxonomies are relevant, are you attaching multiple taxonomy terms with the post?)

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25057
    Brajesh Singh on in reply to: Mediapress cover photo upload not saving #55289

    Hi Kim,
    Thank you. I am looking into it. Please expect an update by Monday.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25057
    Brajesh Singh on in reply to: Media Press issues #55288

    Hi Jesse,
    Welcome to BuddyDev support forums. Can you please share me the name of the theme? Also, You can simply paste a link in your postbox to embed it. BuddyPress supports embedding links directly, you do not need MediaPress for it.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25057
    Brajesh Singh on in reply to: Mediapress cover photo upload not saving #55283

    Hi Kim,
    Thank you for using the plugins.

    – Is it happening when using in combination with Paid Memberships Pro storage limit plugin?
    – Which theme and template pack are you using?
    – Is it happening for user/sitewide or groups gallery(which one did you test)

    Please let me know the details and I will assist.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25057

    You are welcome. I am glad it helped.

  • Keymaster
    (BuddyDev Team)
    Posts: 25057

    Thank you Stephanie.

  • Keymaster
    (BuddyDev Team)
    Posts: 25057

    Hi Mary,
    Thank you for using the plugin.
    I am sorry for the delayed reply.

    1. Please upgrade to 1.1.4 and then ad the following code to your child theme’s functions.php or wp-content/plugins/bp-custom.php

    
    
    /**
     * Disables private message rate limiter for verified members
     */
    add_filter( 'bp_private_message_rate_limiter_can_send', function ( $can, $user_id ) {
    	global $bp_verified_member;
    	if ( ! $bp_verified_member || ! is_callable( array( $bp_verified_member, 'is_user_verified' ) ) ) {
    		return $can;
    	}
    
    	if ( $bp_verified_member->is_user_verified( $user_id ) ) {
    		$can = true;
    	}
    
    	return $can;
    }, 10, 2 );
    
    

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25057

    Hi Stephanie,
    Thank you for reporting the isssue.

    I am sorry, It is not caused by Featured Members.

    Here is the code we are using to add members directory tab

    https://github.com/buddydev/bp-featured-members/blob/master/core/class-featured-members-template-helper.php#L22

    and here is the implementation

    https://github.com/buddydev/bp-featured-members/blob/master/core/class-featured-members-template-helper.php#L79

    I am not sure why the count is not being synced on the site. Is there a possibility that 4 members were featured earlier but were set to non featured by some other means?

    Regards
    Brajesh