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: 25468
    Brajesh Singh on in reply to: Featured Image #7555

    Hi Graham,
    Thank you for posting.

    The best strategy is to use larger images whenever possible. The aspect ratio used makes it tricky. The normal strategy is to set image size to cover on the container but that was causing issue on the site for smaller images.

    We have the grid image now more in line( Not yet available for download ). I am going to look a little more into the featured size today and tomorrow and weigh on the options. Based on that using a larger image and scaling down or using a recommend size may be an option. Since you are using theme with fixed width layout, It will be easier for us to do it.

    PS: WordPress will always keep the original image. A social sharing plugin may use that for the og:image tag.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25468
    Brajesh Singh on in reply to: [Resolved] AutoActivate AutoLogin Not working #7554

    Hi Brett,
    is there any plugin like registration option or something that affects the registration is being used?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25468
    Brajesh Singh on in reply to: buddypress multisite registation #7553

    Hi Pat,
    It seems that something might be causing a fatal error here.

    Please enable WP_DEBUG in your wp-config.php and try to see the registration page. Do you notice any error there?

    Also, I am assuming that you have the site creation enabled in Multisite settings.

    Please let me know what you see there.

  • Keymaster
    (BuddyDev Team)
    Posts: 25468
    Brajesh Singh on in reply to: Mediapress Upload Photo from iPhone #7552

    Hi BD,
    My apologies for the delay.

    Please give us till 5th. The person who is tasked with setting up install on Linode is on leave and that has complicated the things. he is supposed to be back on 4th. Please bear with us for 2 more days.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25468

    Hi Waldemar,
    I am sorry. As I explained in a previous reply, bp_has_members() doess support roles. We I skipped on roles and only supported the member types out of the box.

    You can still do it for roles using BP_User_Query but you will have to write your own loops. If we did it in the plugin, we will loose one of the views(Theme default), so we had to skip on that.

    Hope that clarifies. If you want, I can post here an example of the loop using one of the roles.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25468
    Brajesh Singh on in reply to: Recent Media Widget – Multiple Statuses #7550

    Thank you. I am hoping that it all goes well 🙂

  • Keymaster
    (BuddyDev Team)
    Posts: 25468

    Hi Cathy,
    The last activity time on the directory was happening since BuddyPress introduced live timestamp.

    To fix it, I have dequeued the live timestamp js on the members directory. also, I have fixed the redirect to redirect to current page(or home page if the url was directly accessed).

    We already add the notice of the access redirection.

    It will be visible if your theme has this line

    
    <?php do_action( 'template_notices' ); ?>
    
    

    That code is used for inserting the BuddyPress notices on pages.

    Please upgrade to 1.4.0 and It all should work.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25468
    Brajesh Singh on in reply to: Conflict with BP Portfolio plugin #7539

    Hi Kristin,
    Thank you.

    That is because the BP portfolio plugin has a lot of messy code.

    Here is the code from the plugin that is causing the issue

    
    /**
     * Set upload file type
     *
     * @param $mime_types
     * @return array
     */
    function bpcp_myme_types($mime_types){
        //Creating a new array will reset the allowed filetypes
        $mime_types = array(
            'jpg|jpeg|jpe'                 => 'image/jpeg',
            'gif'                          => 'image/gif',
            'png'                          => 'image/png',
            'bmp'                          => 'image/bmp',
            'tif|tiff'                     => 'image/tiff',
            'ico'                          => 'image/x-icon',
        );
    
        return $mime_types;
    }
    add_filter('upload_mimes', 'bpcp_myme_types', 1, 1);
    
    

    It simply resets all the allowed mime types. This kind of code is bound to thousand problems in future.

    Please report it to them and they should be able to fix.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25468
    Brajesh Singh on in reply to: Feature: Featured members in different categories #7536

    Hi Waldemar,

    It is only visible if you have some member types registered. Do you have any member type registered on your site?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25468
    Brajesh Singh on in reply to: Recent Media Widget – Multiple Statuses #7535

    Hi Camden,
    Welcome to BuddyDev.
    Though you can extend the widget and in the MPP_Media_Query pass an array of status, Please do note that the friends status is relative to the owner of the media.
    The visibility of a group of media having status private, public, friendsonly will not result in what you might be thinking.

    If your goal is to list all media, the simple strategy that will work best is just not passing status to the MPP_media_Query.

    Thank you
    Brajesh