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: 25480

    Hi Daniel,
    Thank you.

    The theme has too many unnecessary high priority css causing conflicts. I am seeing issues with other plugins too.

    For this particular case, you can put this

    
    .mpp-item-meta button,
    .mpp-item-meta button:hover {
    
        padding: 0 !important;
        border: 0 !important;
        background: none !important;
        border-radius: 0 !important;
    }
    
    

    For lightbox

    
    div.mpp-activity-meta a {
      font-size: 12px;
      line-height: 1em;
      padding: 8px;
    }
    
    

    Using important is a bad thing but we don’t have much choice here. These should most probably work.

    Also, My suggestion will be to ask your theme developer to support MediaPress instead of providing temporary fixes from here. It is not difficult.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25480

    Hi Daniel,
    We do not include any default css for button and it inherits from theme. That might not look good in some cases.

    Can you please link me to a page where I can see the button and provide you the required css.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25480

    Hi Philippe,
    Thank you.

    I have re tested the registration and role assignment on BuddyPress 4.1 and there seems to be some issue in assigning roles(even the normal ones).

    Please allow me around 24 hours to put a fix(will have before that).

    Thank you
    Brajesh.

  • Keymaster
    (BuddyDev Team)
    Posts: 25480
    Brajesh Singh on in reply to: Redesign of xprofile fields in members directory #19855
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25480
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25480

    By Condition I mean restricting the header visibility to only certain profile tabs. If you want to limit it, you can do so by putting the above code (it is in the nouveau file) under some condition.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25480
    Brajesh Singh on in reply to: Redesign of xprofile fields in members directory #19850

    You will need to target using media query. Simply removing position:absolute and the bottom margin for avatar will solve it for the mobile.

    As of the last design shared(3 cols or 2 cols), That will need template modification, mere css won’t be able to fix it.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25480
    Brajesh Singh on in reply to: Redesign of xprofile fields in members directory #19847

    Also,
    If it looks bad, Please change margin rule in the above code from

    
    margin-left: 0;
    
    

    to

    
    margin-left: 0 !important;
    
    

    That should put the text under image.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25480
    Brajesh Singh on in reply to: Redesign of xprofile fields in members directory #19845

    Hi Carsten,
    Please add the following css and it should do it partially.

    
    .bph_xprofile_fields {
    
        margin-left:0
        position: absolute;
        left: 0;
        bottom: 0;
    }
    
    #members-dir-list .bp-list li .item-avatar {
      margin-bottom: 100px;
    }
    
    

    That should most probably do it.

    Please let me know if it works or not?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25480

    Hi Carsten,
    Happy New Year.

    I agree with you on the visibility of header. It can be controlled via the themes though.

    You can change that by copying buddypress/bp-templates/bp-nouveau/buddypress/members/single/home.php to yourtheme/buddypress/members/single/home.php

    The code block that you may want to put under condition is

    
    	<div id="item-header" role="complementary" data-bp-item-id="<?php echo esc_attr( bp_displayed_user_id() ); ?>" data-bp-item-component="members" class="users-header single-headers">
    
    		<?php bp_nouveau_member_header_template_part(); ?>
    
    	</div><!-- #item-header -->
    
    

    To be honest, I believe BuddyPress has great functionalities but the UI is a let down. I am not sure about the BuddyPress default templates but We are certainly hoping that we will be able to change that experience with BuddyPress in near future with our themes.

    Regards
    Brajesh