Search Results for 'buddypress'
-
Search Results
-
Topic: Optimizing buddypress files
Hello, on my website i am using only 3 buddypress pages -> Members page , Registration page, Activation page, and i have this installation https://prnt.sc/1003nc1
I would like to remove all the following js and css that are running on all the pages of the site:
wp-content/plugins/buddypress/bp-core/js/confirm.min.js wp-content/plugins/buddypress/bp-core/js/widget-members.min.js wp-content/plugins/buddypress/bp-core/js/jquery-query.min.js wp-content/plugins/buddypress/bp-core/js/vendor/jquery-cookie.min.js wp-content/plugins/buddypress/bp-core/js/vendor/jquery-scroll-to.min.jsand
wp-content/plugins/buddypress/bp-members/css/blocks/member.min.css wp-content/plugins/buddypress/bp-members/css/blocks/members.min.cssand just keep them on those 3 pages for logged out users.
I know that i could use a statement likeif ( !is_user_logged_in() )but i dont know the handlers for those js and css and i dont know how would be the process to deregister / enqueue them.I think the members page and subpages can be declared with
bp_is_my_profile()?I am sorry for the luck of knowledge but i am still new and learning on those stuff.
Any help please would be appriciated. thank you ๐
Topic: Plugins compatible with wpml
Did you want to know if the BP registration option, BP profile search and Buddypress multilingual plugins are compatible with the wpml language plugin?
I have last verion of wordpress and buddypress.
My site is https://satisfyu.comHowdy folks,
The TEL field in a user’s profile is showing up as a string instead of code (something is autoformatting into text)
Tried squashing this bug myself but ran into a wall. Something inside BuddyPress is adding a ” to the tail end of a phone number entered into a profile and it’s throwing out the entire data line on the table. Any chance of a fix? (or at least let me know what file in the maze of buddypress files may be causing this and I’ll fix it myself ๐ )
After installing BuddyPress, My registration page is now under buddypress, Even the password field is missing so people cant even sign up.
I want it to be my original themes registration page.
Ive done a bunch of research and none of the codes seemed to have worked for me.
Any Idea How to remove buddypress reg page?
Project Details :
– WordPress version : 5.5.3
– BuddyPress version : 6.3.0
– Website Link : https://microfarmap.dev-local.com/
– Other plugins I use : Advanced Custom Fields PRO, Advanced Custom Fields: JSON, bbPress, bbPress – Moderation Tools, BuddyForm Premium, BuddyForm Advanced Custom Fields, BuddyForm Hook Fields, BuddoForm Members Premium, BuddyPress Username Changer, Custom Post Type UI, LoginPress, Paid Memberships Pro, Progress Map, List & Filter, User Role Editor …Hello,
I have been updating a WordPress website that was made by others, I might lack some information.BuddyPress works like a charm except for a few features :
– From the user profile, we can send friendship requests. As a new user, I sent a friendship request to my admin account. I did receive the notification on my admin profile, but the Friends tab says there is no friend requests pending. It just doesn’t display theme on my customized Understrap theme.
– Switching to WordPress Twenty Twenty One theme does solve the issues. Switching to Understrap parent theme does switch the issue. There seems to be a problem with my custom theme.
Under this custom there, there is a /buddypress/ directory with template pages and loops. The buddypress/members/single/friends/requests-loop.php file was not modified, it’s the default one. That’s where I checked first.
I also checked in the plugin files directly, under plugins/buddypress/bp-friends/bp-friends-functions.php but did not find a clue.
After some research, I found out that only users that have an active ‘ Paid Memberships Pro ‘ subscription can send friend requests, or atleast their friend requests appear.
I also installed the ” BuddyPress Integration ” plugin from Paid Memberships Pro website, in which there is an option to allow non-registered users to send friend requests, but it did not solve the issue.
Please if you need more details or even an access, do not mind asking.
Hi everyone,
there is a strange problem. I’ve use WordPress, BuddyPress and “Buddyboss-Global-Search” what should be the correct plugin to use.
If I search for a blocked member, the search-result number is correct and show “0 results found” BUT the search-result filter lists “Members (1)” and also show the member in the results itself.
Can anyone help me, to get rid of the blocked members in the search-results? It is not an option the delete the user from database as of linked page-content written or edited by this members.
Thanks.
Hello. I created a group directory tab in the groups area of my buddypress theme, and it seems to work fine minus the page tab navigation (e.g., there are over 25 groups, and 20 or so displayed per page, but when you click to tab through the pages it is nonresponsive).
Before I figured out how to create a buddypress page from a tab, I just created a link to the wordpress group directory page– and the navigation tabs work fine there, just not on my buddypress page, so I’m sure the problem is with my coding.
Have you seen this before? Can you help out?
function group_tab_yourtabname() { global $bp; $parent_slug = 'groups'; bp_core_new_subnav_item( array( 'name' => 'Advisory Group Directory', 'slug' => 'directory', 'screen_function' => 'mydirectory_screen', 'position' => 40, 'parent_url' => bp_loggedin_user_domain() . $parent_slug.'/', 'parent_slug' => $parent_slug, ) ); } add_action( 'bp_setup_nav', 'group_tab_yourtabname' ); function mydirectory_screen() { // Add title and content here - last is to call the members plugin.php template. add_action( 'bp_template_title', 'yourtab_title' ); add_action( 'bp_template_content', 'yourtab_content' ); bp_core_load_template( 'buddypress/members/single/plugins' ); } function yourtab_title() { echo '<center>Advisory Group Directory</center>'; } function yourtab_content() { echo 'United Resource Connection uses Advisory Groups as quality assurance judiciary boards. If your field of study and expertise aligns with one or more Advisory Group you are interested in joining, request membership by using the <i>Request Membership</i> buttons on the right. '; do_action( 'bp_before_groups_loop' ); ?> <?php if ( bp_get_current_group_directory_type() ) : ?> <p class="current-group-type"><?php bp_current_group_directory_type_message() ?></p> <?php endif; ?> <?php if ( bp_has_groups( 'user_id=NULL' ) ) : ?> <div id="pag-top" class="pagination"> <div class="pag-count" id="group-dir-count-top"> <?php bp_groups_pagination_count(); ?> </div> <div class="pagination-links" id="group-dir-pag-top"> <?php bp_groups_pagination_links(); ?> </div> </div> <?php /** * Fires before the listing of the groups list. * * @since 1.1.0 */ do_action( 'bp_before_directory_groups_list' ); ?> <ul id="groups-list" class="item-list" aria-live="assertive" aria-atomic="true" aria-relevant="all"> <?php while ( bp_groups() ) : bp_the_group(); ?> <li <?php bp_group_class(); ?>> <?php if ( ! bp_disable_group_avatar_uploads() ) : ?> <div class="item-avatar"> <a href="<?php bp_group_permalink(); ?>"><?php bp_group_avatar( 'type=thumb&width=50&height=50' ); ?></a> </div> <?php endif; ?> <div class="item"> <div class="item-title"><?php bp_group_link(); ?></div> <div class="item-meta"> <span class="activity" data-livestamp="<?php bp_core_iso8601_date( bp_get_group_last_active( 0, array( 'relative' => false ) ) ); ?>"> <?php /* translators: %s: last activity timestamp (e.g. "Active 1 hour ago") */ printf( __( 'Active %s', 'buddypress' ), bp_get_group_last_active() ); ?> </span> </div> <div class="item-desc"><?php bp_group_description_excerpt(); ?></div> <?php /** * Fires inside the listing of an individual group listing item. * * @since 1.1.0 */ do_action( 'bp_directory_groups_item' ); ?> </div> <div class="action"> <?php /** * Fires inside the action section of an individual group listing item. * * @since 1.1.0 */ do_action( 'bp_directory_groups_actions' ); ?> <div class="meta"> <?php bp_group_type(); ?> / <?php bp_group_member_count(); ?> </div> </div> <div class="clear"></div> </li> <?php endwhile; ?> </ul> <?php /** * Fires after the listing of the groups list. * * @since 1.1.0 */ do_action( 'bp_after_directory_groups_list' ); ?> <div id="pag-bottom" class="pagination"> <div class="pag-count" id="group-dir-count-bottom"> <?php bp_groups_pagination_count(); ?> </div> <div class="pagination-links" id="group-dir-pag-bottom"> <?php bp_groups_pagination_links(); ?> </div> </div> <?php else: ?> <div id="message" class="info"> <p><?php _e( 'There were no groups found.', 'buddypress' ); ?></p> </div> <?php endif; ?> <?php /** * Fires after the display of groups from the groups loop. * * @since 1.2.0 */ do_action( 'bp_after_groups_loop' ); }Topic: Deleting User Topics & Post
I was wondering if anyone could help me. How do you delete a user’s Topic or posts in BuddyPress. I have BuddyPress site, but I can see where you can delete a post or Top that might be inappropriate. If I enable-spam for the user you can see the post. I would like to delete the data first or have the user have the ability to delete their own post, but I don’t see that capability either.
Hi everyone,
I have a strange bug that I have not been able to find a solution for, although I see in the forums others have had very similar issues I believe that these have been fixed many years ago.
The Problem:
‘total_group_count’ value is in negative numbers for several users. Some up to -17. Using the “Repair total groups count for each member” tool does not fix these negative numbers.I could simply change all these values in the database but I think it will happen again and I would like to understand what might be causing this issue. I have gone through the database for ghost entries relating to groups and I have confirmed that the only entries that exist are for groups found on the website. I have also confirmed this is not theme related.
The setup:
BuddyPress Version 6.3.0, network installed on WordPress 5.5.3 multisite. Hosted by WPengine.If anyone can point me in any direction it would be really appreciated.
Topic: membership page not working
Hey guys, I’ve scoured around google and this forum. Not sure if I simply don’t know what keywords to plug in but I haven’t found a solution. :-/
My membership page is not working. When you go to the page, you’ll see this string of code:
[kc_row _id=”852969″][kc_column _id=”404198″][kc_column_text _id=”130096″][edr_user_membership][/kc_column_text][/kc_column][/kc_row]I’m using the Avada WordPress 5.5.3 theme on my site with WordPress with BuddyPress 7.1.0
Here’s a screenshot to help: https://drive.google.com/file/d/1dfQirfgFrZVC4FiaFyxR7mtI0PotVQX0/view?usp=sharing
Appreciate you taking the time to read this far. ๐ Thank you!
Buddypress support,
Why canโt I change my username. Also, why canโt I make my administrator aaccount a private account that that doesnโt show up on the leaderboard? I just need those two things done. Someone please help me.
