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: 25485
    Brajesh Singh on in reply to: Member Directory Card #50845

    Hi Megan,
    Welcome to BuddyDev.

    BuddyBoss profile fileds are same as BuddyPress Xprofile fields. They have just changed the label to profile from xprofile.

    If you have seen snippets allowing you to add xprofile field on card, it should work in similar ways!

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: MediaPress Page 2 – 404 not working #50844

    Hi Andy,
    Thank you for reporting the issue. I checked your site and seems the pagination does have issue.

    Please allow us to investigate and get back to you in next 24 hours.

    PS:- I am assuming you are using 6.3 not 4.3

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: MediaPress default gallery cover #50841

    Hi,
    Thank you for the questions and reporting the issue.
    I am sorry for the late reply.

    1. At the moment, for changing the default for all galleries is doable via child theme. We need to override the thumbnails in child theme. It is same process as explained for icons.

    https://buddydev.com/mediapress/mediapress-basics/overriding-mediapress-activity-upload-icons/

    The issue with Thumb:- Which theme/template pack are you using? The issue seems to be related to not using the thumbnail and using css to set width. It is not done by MediaPress. If you can point me to a page on your site, I can quickly diagnose the issue(It is some css).

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: [Resolved] auto follow featured members #50840

    Hi Tosin,
    Thank you for the question.

    I will suggest adding a check for is_user_loggdin() or when using wp_get_current_user() test if the relevant object was returned before proceeding further.

    It should work fine. The count_user_posts is a bit slow and being called for all featured users is a performance penalty.

    Overall, the code can be simplified a lot.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: Redirect to User Profile #50839

    Hi Rik,
    That would be very strange. I assume there is something causing it on your setup as this is not the expected behaviour.

    I will suggest disabling custom code/plugins and recheck.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: Redirect to User Profile #50836

    Please use the complete url with http://yoursite.com/members/me/profile.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: [Resolved] Mediapress lightbox arrows #50835

    Thank you Nik

  • Keymaster
    (BuddyDev Team)
    Posts: 25485

    Hi Fabian,
    Thank you for the question.
    If you are using BuddyBoss, you can use the following css.

    
    #buddypress .grid.bp-list>li.item-entry {
     flex: 0 0 25%;	
      min-width:unset;
    }
    

    That will show 4 cards per row. To show 5, change 25% to 20% and so on.

    It will affect all list. If you want to apply only to members list, you can use the following instead.

    
    #buddypress #members-dir-list  .grid.bp-list>li.item-entry {
     flex: 0 0 25%;	
     min-width:unset;
    }
    
    

    Hope that helps.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: Update roles based on member types #50833

    Hi,
    Thank you for the question.

    Since you are using Member Types pro, you can map member types to roles and it will update the role. In order to do that, Please edit your member types and enable member types to role update for each.

    For more details, Please see https://buddydev.com/docs/buddypress-member-types-pro/assigning-wordpress-roles-based-buddypress-member-types/

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25485
    Brajesh Singh on in reply to: Redirect to User Profile #50823

    Hi Rik,
    As @michaelm has suggested, BuddyPress has a special meaning for slug ‘me’ if used with directory url. If a user is logged in, It points to them.

    Example:- your site has a directory at http://example.com/members/

    Then the http://example.com/members/me/ will point to the logged user home page and http://example.com/members/me/profile to their profile.

    Regards
    Brajesh