BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25182
    Brajesh Singh on in reply to: BuddyBlog Pro error, #53368

    Hi,
    Thank you for reporting the issue.

    I am sorry about it. In recent version of BuddyBoss, the blogs component has been removed from components screen and is enabled from activity settings, That seems to be the issue.

    For a temporary solution, Please visit Dashboard->BuddyBoss->Settings->Activity->Posts in Activity Feeds and enable it for WordPress posts. That will fix it.

    We will update the plugin to ensure that it checks for the state of blogs component before registering activity type.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25182
    Brajesh Singh on in reply to: [Resolved] Anonymous plugin – bugs #53344

    Hi Katrine,
    Thank you. I am glad the first part did work.

    You may use this code to disable the view discussion for single activity for anonymous activity.

    
    
    /**
     * Disables the view discussion for anonymous activity.
     */
    add_filter( 'bp_activity_permalink', function ( $link, $activity ) {
    
    	if ( function_exists( 'bp_is_anonymous_activity' ) && bp_is_anonymous_activity( $activity->id ) ) {
    		return '';
    	}
    
    	return $link;
    }, 20, 2 );
    
    

    Hope that helps.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25182
    Brajesh Singh on in reply to: [Resolved] Anonymous plugin – bugs #53341

    Hi Katrine,
    Thank you for the patience.

    You need to translate this string

    
    %1$s posted an update in the group %2$s
    

    I am not sure how that works with the TranslatePress.

    2. The link:- For activity, we do not have control. I checked that again. There are times when we update it while saving. That has no link. But if we did not do that at the time of creation, we wilter away the user’s url.

    3. We could change the link to single activity post to ‘#’ too. The reason it was left is to allow people read the whole activity. Would you like that to change, Please let me know.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25182
    Brajesh Singh on in reply to: BuddyPress Activity Plus not uploading images #53340

    Hi Ryan,
    I am sorry, the plugin is not supported any more. We recommend using default BuddyPress attachment plugin. We will be taking this plugin down around WordPress 6.7 release.

    Please use BuddyPress attachment plugin by BuddyPress team.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25182
    Brajesh Singh on in reply to: BuddyBlog Pro Problem – Images Not Uploading. #53339
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25182
    Brajesh Singh on in reply to: BuddyBlog Pro Problem – Images Not Uploading. #53334
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25182
  • Keymaster
    (BuddyDev Team)
    Posts: 25182
    Brajesh Singh on in reply to: Allow users to delete forum discussions #53332

    Hi J,
    Thank you for the question.

    I would suggest looking at this
    https://codex.bbpress.org/getting-started/before-installing/bbpress-user-roles-and-capabilities/

    and this
    https://codex.bbpress.org/getting-started/before-installing/bbpress-user-roles-and-capabilities/

    In other words, you will need to use a role/caps manager and add an additional capability to subcribers to allow this.

    Since BuddyBoss uses a fork of bbPress, notifying them might help.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25182
    Brajesh Singh on in reply to: [Resolved] Anonymous plugin – bugs #53325

    Hi Katrine,
    Thank you for using the plugin and sharing your issues.

    1. Is that the only instance in anonymous plugin which is not being translatable? Have you tried translating/localizing anonymous plugin?

    2. That is to conform with the markup on that page. It should not link to the actual user. Is it linking to the actual user? I am looking into it(assuming it is about group activity comment?)

    3. I am sorry, we lack control over it. It is injected by template pack/BuddyPress and we have ensured that it does not reveal the poster. You will need to manage the css(Most of the default template have the ability to handle activity/p/activity_id) screen. I will explore it again to see if it is feasible to disable link to supply some css(problematic as ever theme have their own way).

    I will get back to you in next 24 hours.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25182
    Brajesh Singh on in reply to: BuddyBlog Pro Problem – Images Not Uploading. #53324
    This reply has been marked as private.