BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 24611

    Hi Herra,
    Welcome back to BuddyDev support forums.

    MediaPress is for BuddyPress and will not work with BuddyBoss.

    Please contact BuddyBoss support and ask them if they can assist you with it. BuddyBoss has their own media system.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24611
    Brajesh Singh on in reply to: Anonymous – User Profiles #52668

    Hi Katrine,
    I am sorry, the problem is RT Media uploaded activity can not be marked as anonymous/should not be marked as anonymous.

    do you have issues when the RT media activity is not marked as anonymous?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24611

    Hi James,
    Thank you for the reply.

    If you are not using any of our plugins, It can not be caused by our plugin then.

    Please inform BuddyBoss support that you are not using any of our plugins and they will assist you further.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24611

    Hi James,
    Thank you for reaching out.

    Are you using our plugin? I don’t see any plugin attached with your account. Please confirm and we will look into it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24611
    Brajesh Singh on in reply to: WP Admin -> Users -> Site Notices #52624

    Hi Mike,
    Around BuddyPress 11.0, The loading of assets(css/js) were limited to BuddyPress pages only.

    You can re-enable loading on all page using the following code

    
    
    /**
     * Load BP Assets on all pages.
     */
    add_filter( 'bp_enqueue_assets_in_bp_pages_only', '__return_false' );
    

    That will fix your issue.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24611

    Hi Alex,
    Welcome to BuddyDev.

    I do not see any issue with BuddyPress query and for me it is returning different results(I tried 5 times where 3 had same rows but 2 had different rows).

    It is quiet possible that the result is random but the effect is only visible some of the time.

    In case you are using BP Nouveau, you may use a snippet like this to enable random order for all members context

    
    add_filter( 'bp_nouveau_get_members_filters', function ( $filters ) {
    	$filters['random'] = __( 'Random Users' );
    
    	return $filters;
    } );
    
    

    and test it.

    If you still get exact same result all the time, you may want to check https://stackoverflow.com/questions/21187570/why-is-mysql-returning-the-same-results-while-using-rand-in-the-select-stateme

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24611

    Hi Arthur,
    I am sorry for the delay.

    The functionality is not available in the plugin. What you are looking for is not like but something like “Match any of”. The like operator works with text values.

    The plugin does not support this.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24611
    Brajesh Singh on in reply to: [Resolved] Translating Moderation Messages #52621

    Hi Casper,
    Thank you for your patience.
    I am sorry, I was not sure which message you were referring to.

    I believe I understand it now. Is it about approval/rejection email message content?

    Please confirm and we will update it quickly.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24611
    Brajesh Singh on in reply to: [Resolved] Translating Moderation Messages #52596

    Hi Casper,
    Thank you for using the plugin.

    This is most probably related to how the message is shown. In profile moderator, we are probably using BuddyPress’s notice feature which is not allowing html.

    Please allow me to check and get back to you in next 24 hours.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24611

    Hi,

    1. Yes, or you can search inside the file manager.
    2. Yes, but a very bad idea to do so.

    You are favouring premature optimization and perceived performance over a huge maintenance nightmare. Your edits will be lost when BuddyPress update happens in future.

    PS:- You do not need loco translate, you can use any localization toool(e.g poedit) to change the text and generate the file. WordPress supports localization out of the box.
    https://developer.wordpress.org/plugins/internationalization/localization/

    Regards
    Brajesh