Shape the future of Social networking with WordPress: Join Project Midnight Sun! The next generation platform for community building with WordPress!

BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25365

    Hi Arsalan,
    Thank you for the questions.

    1. Playlist view does not support pagination. Please use grid view and it shoudl work.

    2. No. Currently we only support Media attachment with BuddyPress Activity updates. We are expecting to support other places too in near future.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25365

    Hi Arslan,
    Thank you for the reply.

    I am sorry, MediaPress does not count number of downloads or number of views currently.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25365
    Brajesh Singh on in reply to: Buddycommerce "shop" tab slug can't be customized #34267

    Hi Alex19,
    Thank you for the reply.

    These are configuration issues. You need to make sure tabs are only visible to profile owner.

    If you are comfortable sharing admin access, Please do and I will update the settings fro you.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25365

    Hi Michael,
    I am sorry for the inconvenience.

    There was an issue with Geodirectory causing issue with media buttons, so we disabled it. It was a side effect.

    Please allow us 24 hours to push and update for the profile tabs .

    the User Profile Tabs do not show the Subnav tab heading when on the Main tab heading on the front end (if you would like a photo of that as well please let me know).

    Yes, Please share a screenshot. It is most probably some configuration issue.

    Thank you
    Brajes

  • Keymaster
    (BuddyDev Team)
    Posts: 25365
    Brajesh Singh on in reply to: How does a deactivated user appear? #34253

    Hi Carsten,
    Thank you for the question.

    If your theme has normal hooks, the visitor will see the message and get redirected to their own profile.

    
    Sorry, that profile is not accessible
    

    If the visitor is not logged in, they will get redirected to the site home page.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25365

    Hi Virender,
    Thank you for the patience.

    I am sorry for the confusion. We are whitelisting content from Super admins by default. Since you are not on a multisite, all users with “Administrator” role is considered super admin by WordPress and that’s why the error was happening.

    Do you want to allow reporting posts from the super admins too or will you be using authors/editors roles for posting content?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25365

    Hi Maarten,
    Thank you for the patience.
    We have released a new update.

    With this update, you may use a few lines of code to control who can have testimonials.

    Here is an example

    
    
    /**
     * Enable/Disable testimonials for certain member types.
     */
    add_filter( 'bp_testimonial_enabled_for_user', function ( $enabled, $user_id ) {
    
    	$allowed_member_types = array(
    		'student',
    		'teacher',
    	);
    
    	$user_types = bp_get_member_type( $user_id, false );
    
    	if ( ! empty( $user_types ) && array_intersect( $allowed_member_types, $user_types ) ) {
    		$enabled = true;
    	} else {
    		$enabled = false;
    	}
    
    	return $enabled;
    }, 10, 2 );
    
    

    Please update the allowed_member_type with correct values an dput this code in your bp-custom.php(wp-content/plugins/bp-custom.php) or in your theme’s functions.php

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25365
    Brajesh Singh on in reply to: [Resolved] Circles plugin causing critical error #34246

    Hi Maarten,
    Thank you for the patience. we have pushed a release. Please let me know if it works for you or not?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25365

    Hi Virender,
    Thank you for the reply.

    There are only 3 possible cases when the above message is shown:-

    1. The post type is not enabled in reportable:- You already have it.
    2. The author of the post is white listed. I do not see anyone whitelisted in your settings
    3. Or the Reportable type is not valid(not registered as active type).

    I am not sure which one of these is happening.

    Can you please grant me temporary access to your server(may be staging server) where I can debug it?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25365
    Brajesh Singh on in reply to: Mediapress Transcoder — Transcoder needs FFMPEG #34238

    Hi Roni,
    No, The local transcoder only works with files hosted on the same server. We are working on a better micro service to change this in future.

    Regards
    Brajesh