Search Results for '5.4'
-
Search Results
-
Hey Guys,
Wordpress version: 5.4.2
Buddypress Version: 6.1.0(Themes and plugins are all up to date. All the buddy press features are working fine except the below two issue)
Yes I face the same issue with twenty, twenty themes.
Website URL: gooalgenie.comIssue
I am Facing the issue with Cover Image and Profile Pic looking Blur
Solution Tried did not affect:
Tried following Code for CSS:
#buddypress #item-header-cover-image #item-header-avatar img.avatar {
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: crisp-edges;
-ms-interpolation-mode: nearest-neighbor;
}
#buddypress #header-cover-image {
image-rendering: -moz-crisp-edges;
image-rendering: -o-crisp-edges;
image-rendering: -webkit-optimize-contrast;
image-rendering: crisp-edges;
-ms-interpolation-mode: nearest-neighbor;
}Even tried each Image rendering values but no luck.
image-rendering: auto;
image-rendering: crisp-edges;
image-rendering: pixelated;/* Global values */
image-rendering: inherit;
image-rendering: initial;
image-rendering: unset;Topic: Nav and Sub Nav Ajax
WordPress: 5.4.2
BuddyPress: Version 6.1.0
Theme: Buddyapp
https://ecodominicana.comHello, I’m having a small issue, and can’t figure out how to fix it. Already read a lot of threads and documentation, but It seems I’m missing something.
Yesterday this error appeared:
PHP Deprecated: bp_before_xprofile_cover_image_settings_parse_args is deprecated since version 6.0.0! Use bp_before_members_cover_image_settings_parse_args instead. in /var/www/wptbox/wp-includes/functions.php on line 5088And it appears only on profile pages, like this one:
https://ecodominicana.com/members/ecodominicana/profileSo I created a buddypress.css in my child theme’s CSS folder: wp-content\themes\buddyapp-child\buddypress\css
And added this code:
$theme_handle = 'bp-parent-css'; $settings['theme_handle'] = $theme_handle; /** * Then you'll probably also need to use your own callback function * @see the previous snippet */ $settings['callback'] = 'bp_legacy_theme_cover_image'; return $settings; } add_filter( 'bp_before_xprofile_cover_image_settings_parse_args', 'your_theme_cover_image_css', 10, 1 ); add_filter( 'bp_before_groups_cover_image_settings_parse_args', 'your_theme_cover_image_css', 10, 1 );Here is the the code in main functions.php
function kleo_load_files_plugin_compat() { //enqueue child theme style only if activated if ( is_child_theme() ) { if ( is_rtl() ) { wp_enqueue_style( 'kleo-rtl' ); } wp_enqueue_style( 'kleo-style' ); }Any help would be very appreciated. Sorry, I’m a noob in programming, we are a non-profit botanical project, so we can’t afford a programmer…😔
Hey Team,
Really love your plugin with great Features and extension, forum solutions available.
Wordpress version: 5.4.2
Buddypress Version: 6.1.0(Themes and plugins are all up to date. All the buddy press features are working fine except the below two issue)
Yes I face the same issue with twenty, twenty themes.
Website URL: gooalgenie.com
Issue URL: https://tinyurl.com/y43gqshzIssue 1:
I am facing issue with Making Menu/Nav Tabs and Subnav Ajax (pages to load without loading the complete page) – How can I achieve the same?
I researched a lot on various buddy press forums but could not figure out the solution for the same. One of the solutions I tried:
https://buddypress.trac.wordpress.org/ticket/6507 – add the code provided here on bp-custom.php and even on themes functions.php file but made no effect.
Is there any other forum that I can try.
Note: I have bp-custom.php file in mu-plugins directory and in child theme childtheme/buddypress/members/single/group.php file.
Issue 2:
Avatar and cover images look blur whereas they look fine in media library.
Buddypress 6.1.0 and “BuddyPress Nouveau” template.
Theme suffusion child.JS error on page: /members/me/messages/
Uncaught SyntaxError: Unexpected token ‘;’
at new Function (<anonymous>)
at Function.v.template (underscore.min.js?ver=1.8.3:formatted:954)
at i.template (wp-util.min.js?ver=5.4.2:2)
at i.render (wp-backbone.min.js?ver=5.4.2:2)
at i.render (buddypress-messages.min.js?ver=6.1.0:formatted:576)
at i.setPreview (buddypress-messages.min.js?ver=6.1.0:formatted:584)
at p (backbone.min.js?ver=1.4.0:2)
at f (backbone.min.js?ver=1.4.0:2)
at l (backbone.min.js?ver=1.4.0:2)
at i.n.trigger (backbone.min.js?ver=1.4.0:2)and no massages displayed.
Help, please.
When a post is added under “Activity” tab, it would be very helpful to send an auto email notification to pre-selected members.
How to send an auto email notification to pre-selected group members when a post is added under “Activity” tab?
Below is the required info/link
WordPress version version 5.4.2
BuddyPress version Version 6.1.0
Link to my site esCanada.orgTopic: Bubble Notifications Problem
Hi all! I’m new in php & css.
After reading a lot and learning very little, I managed to program the notifications in my project in php and css. It works fine, shows the amounts (friends, messages and notifications) and redirects where it should.
My problem is that I need to “hide” the bubble of “0” when the user has no notifications and only show when if they have 1 or more notifications

Functions.php
function my_counter_nav_menu($menu) { if ( ! is_user_logged_in() ) { return $menu; } $user_id = bp_loggedin_user_id(); $user_url = bp_loggedin_user_domain(); $friends_url = $user_url . bp_get_friends_slug() . '/'; $msg_url = $user_url . bp_get_messages_slug() . '/'; $notify_url = $user_url . bp_get_notifications_slug() . '/'; ob_start(); ?> <li><a><a href="<?php echo bp_loggedin_user_domain();?>friends"><span class="notifications_icons"><i class="fas fa-user-friends" style="font-size:17px;"></i></span><span class="my_bubble_notify"><?php echo friends_get_friend_count_for_user( $user_id );?></span></a></a></li> <li><a><a href="<?php echo bp_loggedin_user_domain();?>messages"><span class="notifications_icons"><i class="fas fa-envelope" style="font-size:17px;"></i></span><span class="my_bubble_notify"><?php echo bp_get_total_unread_messages_count( $user_id );?></span></a></a></li> <li><a><a href="<?php echo bp_loggedin_user_domain();?>notifications"><span class="notifications_icons"><i class="fas fa-bell" style="font-size:17px;"></i></span><span class="my_bubble_notify"><?php echo bp_notifications_get_unread_notification_count( $user_id );?></span></a></a></li> <?php $menu_items = ob_get_clean(); $menu = $menu . $menu_items; return $menu; } add_filter( 'wp_nav_menu_items', 'my_counter_nav_menu' )CSS
.notifications_icons { color: #ffffff; vertical-align: middle; margin: -7px; } .my_bubble_notify { color: #ffffff; border-radius: 3px; background-color: #f7823f; vertical-align: 20%; position: relative; font-size: small; padding: 0.1em 5px; }Buddypress 6.0.0
Wordpress 5.4.2
site: http://www.gamerstroop.com
If you need, you can use test account (acc:test – pw:test)I dont know if I can paste my site link here. If I can’t please remove it or let me know, thank you so much for reading and helping me! <3
I have to hide some nav menus of bp users’ profile page from other users. I using the following function to do so. That was working fine.
/* BuddyPress profile nav menu restrictions */
function bpex_hide_profile_menu_tabs()
{if (bp_is_active(‘xprofile’)) :
if (bp_is_user() && !bp_is_my_profile()) {
// BP’s profile main menu items. Comment those to show.
// bp_core_remove_nav_item( ‘activity’ );
// bp_core_remove_nav_item(‘profile’);
bp_core_remove_nav_item(‘friends’);
bp_core_remove_nav_item(‘groups’);
// exist only if you use bbPress
bp_core_remove_nav_item(‘forums’);
// bp_core_remove_nav_item(‘activity’);
bp_core_remove_nav_item(‘following’);
bp_core_remove_nav_item(‘followers’);
bp_core_remove_nav_item(‘bookmarks’);
bp_core_remove_nav_item(‘activity’);// BP’s profile main menu items. Comment those to show.
bp_core_remove_subnav_item(‘activity’, ‘personal’);
bp_core_remove_subnav_item(‘activity’, ‘friends’);
bp_core_remove_subnav_item(‘activity’, ‘groups’);
bp_core_remove_subnav_item(‘activity’, ‘following’);
bp_core_remove_subnav_item(‘activity’, ‘feed’);
}
bp_core_remove_subnav_item(‘activity’, ‘mentions’);
bp_core_remove_subnav_item(‘activity’, ‘favorites’);endif;
}
add_action(‘bp_init’, ‘bpex_hide_profile_menu_tabs’, 15);I have this navigation menu for the bp user on the header by default. When I am viewing other’s profiles the nav menus inside the user’s header menu also get hidden.
Is there any other ways to do this.
I am using the latest version of WordPress 5.4.2, BuddyPress 6.0.0, and BuddyX Theme 1.3.7.
Hello,
I am working on a subdomain for a client: https://forum.secretsofpakistan.com/
I put a few public Groups on the Homepage, but I can only click on them when I am logged in to the WP site.
When I am logged in, I can visit https://forum.secretsofpakistan.com/groups/uk-nationals-in-pakistan/ e.g. but whoever is not logged in will land on the Homepage of the website.
I already went to Settings – Permalinks and selected “Post Name”.
WordPress Version 5.4.2
BuddyPress Version 6.0.0
Theme AardvarkDoes anyone has an idea how to make the Group pages visible for non-logged in visitors?
WordPress 5.4.1
BuddyPress 6.0.0
Site: http://84.107.187.34/upfrogI managed to make the activity stream multi column with third party software “Masonry” (https://masonry.desandro.com).
The problem I’m facing is calling the masonry-script after the activity stream is completely loaded. For now I used a timeout function to get it working:setTimeout(function(){ $('.activity-list').masonry({ // options itemSelector: '.activity-item', columnWidth: 300 }); }, 3000);Can anyone tell me how to call the script the right way?
Thanks so much in advance and with kind regards,
PeterHi guys,
Somehow my BuddyPress filter – menu list – background -on hover – changed colors and acquired an outline, when testing a theme and returning to my original theme.
I have attached a screenshot of the filter. You will see the highlighted menu item is blue with a thick black outline when hovered over. I have tried to show as much info as possible in the hope someone can provide a css, for when hovering over a menu item to remove the black outline (on hover), and change the background color (on hover) to #21759b, and the text color (on hover) to #ffffff to suit my theme.
This problem has happened to a few of my filters but I’m sure I can fix those if I can get the css for this one.
URL to screenshot in my dropbox
https://www.dropbox.com/s/q9dvxqlhi23j41k/Filter%20-%20on%20hover%20background%20color.PNG?dl=0Thank you
Wordpress Version 5.4.1
Buddypress Version 6.0.0When on the Members page of a Group, there is a search field. This allows you to search for members but it seems to only search username or Last Name.
Is it possible to search based on First Name as well?
WP v5.4.1
BP v6.0.0
The site is private so I don’t imagine providing the URL will help.Thanks in advance.
WP 5.4.1
BP 6.0
Bimber Theme
Website > https://chopstickgang.com/I have Buddypress, alongside BBpress, and youzer installed.
The login/register functions work, but there is no “your account was made successfully” or similar notifications I’ve checked both Buddypress and Youzer plugin settings for any options but I can’t see anything.
Does anyone know how I can troubleshoot this?
Topic: How to edit Group pages
I am wanting to change the layout for the Groups destination page. As in, the actual group page with its content. The problem I’m having right now is that it’s pulling a sidebar that wasn’t really setup to go with Groups. So, I would just like to get rid of the sidebar.
Does anyone know where I would go to edit this?
I am using BP 6.0.0, WP 5.4.1
Here is an example from my site:
https://www.weatherfordonline.com/groups/troubleshooting-faqs/Just wanting to get rid of the sidebar for Group pages like this one.
Thank you!
Hello. My first post here, sorry if this was discussed before, but I wasn’t able to find such topic. If there is one, please, redirect me.
I need to allow friendship requests only among members within the same groups. I think I saw such plugin, but I’m not able to find out if it stille exsists.
Thanks for your time.
(WordPress 5.4.1, BuddyPress 6.0.0)We have PMPRO (2.3.1) + Buddypress (5.2.0) + bbpress (2.6.4) + bbp style pack (4.5.3) installed.
Buddypress 6.0 really screwed with the displays, so that got rolled back.
WP: 5.4.1Buddypress shows the profiles of members
In a member profile, there is a link to show forum (bbpress) activity.
Cool
If a user has a favorite or a subscription showing there, there is also an icon [x] implying that I can unsubscribe/unfavorite that item.
However, nothing happens when that [x] is clicked.
I don’t know who to ping about the problem.
If it’s you, please fess up! and thanksTopic: Emails Problem
Welcome mail is not going from my site as well as mails which are going have text-only ( no colors at all). I tried re-importing mail templpates and reinstalled the plugin but it’s still not working.
My site
Wordpress Version : 5.4.1
Buddypress Version : 6.0.0
Theme : WPLMSHi there,
I am here to report the following issue :
On a multisite install with wp 5.4.1, with buddypress (6.0.0) & bbpress (2.6.4), setting up a forum for a group that is supposed to be hidden makes this group not accessible to admin or group creator. (Myself, as a super-admin/group creator/group admin cant reach my hidden group when bbpress is activated.)
This occurs only when bbpress is activated multisite or single subsite and a buddypress group (buddypress installed network wide) is set to hidden. It seems to work ok with group set as private, or public.
Can you replicate this?
I built a website for a client where we needed to collect some additional information on registration from users that would ultimately be used in their profiles (it’s pretty much a social media platform for local artists).
I have it so that when someone sign ups a notification email goes to my client so he can make sure they are a legit artist to keep them on the site. The notification email just has the default info in it.
Is there any way to include the additional extended profile data in the notification email?
Wordpress 5.4.1
Buddypress 6.0Hello,
I installed buddypress for a few months and it is he who manages the registrations to my site. When a person registers, he does not appear systematically in the members page. Did I forget a setting? However in the profiles the members who do not appear are well: Role on the site = Subscriber and Roles on this forum = Participant
My version is WordPress 5.4.1 with the Divi theme, the Learndash plugin and the version 6.0.0 of BuddyPress.
I had installed the BuddyPress for LearnDash plugin which I uninstalled because it caused bugs. Here is my site https://terresdesavoirs.fr/members/Do you have any idea where this display concern can come from?
Hi,
I have a problem with the new profile block. The profile pictures of the users displayed there are only displayed if you are logged in. If you are not logged in, an error is generated instead of the profile picture.
But I can call up the user profile via the link, in which the profile picture is displayed correctly.https://www.vhsfotoclub.de/mitgliederbereich/galerien-der-fotoclub-mitglieder/
Wordpress Version 5.4.1–de_DE
BuddyPress 6.0.0