Replies
- Brajesh Singh on January 2, 2019 at 10:48 am in reply to: [Resolved] "Report" Button in MediaPress is too big #19863
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 - Brajesh Singh on January 2, 2019 at 10:13 am in reply to: [Resolved] "Report" Button in MediaPress is too big #19861
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 - Brajesh Singh on January 2, 2019 at 9:52 am in reply to: [Resolved] BP Member types pro: role association problem on registration #19859
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. - Brajesh Singh on January 2, 2019 at 1:00 am in reply to: Redesign of xprofile fields in members directory #19855This reply has been marked as private.
- Brajesh Singh on January 2, 2019 at 12:57 am in reply to: [Resolved] Unable to create Project inside a Group #19854This reply has been marked as private.
- Brajesh Singh on January 1, 2019 at 11:48 pm in reply to: [Resolved] General BP behavior when opening custom links #19851
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 - Brajesh Singh on January 1, 2019 at 11:28 pm 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 - Brajesh Singh on January 1, 2019 at 10:55 pm in reply to: Redesign of xprofile fields in members directory #19847
Also,
If it looks bad, Please change margin rule in the above code frommargin-left: 0;to
margin-left: 0 !important;That should put the text under image.
Regards
Brajesh - Brajesh Singh on January 1, 2019 at 10:51 pm 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 - Brajesh Singh on January 1, 2019 at 10:28 pm in reply to: [Resolved] General BP behavior when opening custom links #19843
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