Search Results for 'theme'
-
Search Results
-
Topic: BuddyPress + WCFM
Hi there,
I have Rehub theme+WCFM.
I have recently installed Buddy Press as I need it for a new feature on my site.
All good so far…I have 2 questions:
1: Creating a vendor (store vendor) account, then clicking on the profile icon at the header> manage your store, the WCFM panel opens, which is great.
BUT also the 4 Buddy Press menu options show above the WCFM panel (profile, listing manager,invitations, created by)
It is really confusing, as if I click on the ‘listing manager’ menu on Bpress then the WCFM panel opens in a funny way.
Is it possible to remove the listing manager option from BPress?
Not sure if it makes any sense, I can send you screenshots just let me know your email address.2: how can I remove the ‘newbie’ sign from members pages?
Thx
WP version: 5.9.3
BPress version: 10.3.0
site: https://manofestum.com/manostaging/en/ (it’s the staging version )Hello
There is a problem with next/prev buttons in messages:
It happens to all themes.
My Google search console is showing Server error (5xx) regarding the following Buddypress urls:
https://www.asha-ekumeed.com/groups/
https://www.asha-ekumeed.com/members/on activation of the buddypress plugin , I am getting the 5xx error on search console
but when I deactivate the the plugin the links are fine google search consoleI had verified and checked for the .htacess file.
I also had checked for Plugins and Themes conflict but no conflict found.Memory Limit is 256MB
Please help anyone.
Hello
I see following error on BP 10.2.0
Fatal error: Uncaught TypeError: call_user_func_array(): Argument #1 ($callback) must be a valid callback, class "BP_Nouveau_Object_Nav_Widget" not found in /mnt/web213/b1/68/511611068/htdocs/wp-includes/class-wp-hook.php:307 Stack trace: #0 /mnt/web213/b1/68/511611068/htdocs/wp-includes/class-wp-hook.php(331):
What can be source of this problem. I use my own custom theme.
Topic: Little doubt about backup
I’ve been working on my blog made on WordPress for so long. Now I am deciding to install BuddyPress but I’ve been told that changing theme may lose your data and ranking of your website. Is this true?
Server and version info:
WordPress version 5.9.3
Current theme: Cera (version 1.1.13)
BuddyPress 10.2.0.
BuddyPress to WordPress Full Sync (version 0.3.7)
PHP version 7.4.28This post concerns these pages:
Hello, on both the Members and Groups pages, the individual or group name is Left justified on the tab displayed, whereas the profile pics and text below (for example on the Groups page) is center justified. In both cases, it looks strange. I have experimented with theme customization to see if I can find the problem there, but I cannot find it. I have looked through BuddyPress settings too. Is the theme CERA theme issue or a BuddyPress issue. I want all the text to be center justified.
Hello guys. I have a problem with buddypress shortcodes. Basically the shortcodes don’t work. I’m using WordPress and elementor with astra theme. Can someone help me?
( When I update the page, I see only the words and not the menus)
Thank you very much 🙏I don’t know if required but I don’t have any plugins like contact form installed on my website)
Thank you very much again
Topic: No Invitation Link
Hi there,
I have made a fresh installation of a theme called Aardvark (https://themeforest.net/item/aardvark-buddypress-membership-community-theme/21281062). The theme works fine and I have set up a group as the main WP admin.
However, when in the main group homepage, I don’t have the invite members link to invite other members.
I have been in contact with the theme developers and they have told me that this is a BuddyPress issue and I need to ask for help here.
Does anyone know why the invitation link is missing//
Many thanks!
Hello all,
I’m working in a custom theme in wordpress. I’m getting an error on page /register. It is a blank page and sends directly to the buddypress template php file.
The fields are all there, but it shows a critical error. Anyone have an idea as to what I can do to solve this?
Thanks
Hi guys
Is it possible to remove/hide the “Popular” filter which displays above the Members list widget (Newest/Active/Popular) ?
It kinda encourages friend-request spamming on my site, users competing to be at the top of that “Popular” list.
So just remove the Popular filter, the Newest and Active should remain.
Thanks for any help.
WP 5.9.3
BP 9.1.1
Twenty Sixteen Theme
Site is NSFW, sorry no link unless requestedI encountered a strange behavior: in a WP 5.9.3 / bbPress 2.6.9 / BP 10.2.0 environment, when logged out, when leaving ANY page I get the JS warning “Leave this site? Changes that you made may not be saved.”
I took the old path of deactivating all plugins and activating them one by one. The culprit was BuddyPress.
Furthermore, I found out that changing BP template pack to “Nouveau” instead of “default” solved the warning issue.
Now, my problem is solved, but I have no explanation. Maybe someone could come with an answer to that…—
Theme: GeneratePress
Builder: Elementor ProHi all, I am new to buddypress and my coding skills are almost nule. I am sorry. So far I have been able to set up few things in my website but I cant find an option to hide some large tags (Base and other H4 tags) from users profile. I am using woostify theme (child) and everything is updated. I need help. Thank you !
Topic: Join group ajax not working
I’m getting an admin-ajax 403 error when clicking the Join Group button. It seems to be the switch case in the functions. It seems to be completely ignored somehow. Logging within any of the cases returns nothing at all. Also a quick note… it’s not every group. It’s only on random ones
function bp_legacy_theme_ajax_joinleave_group() { if ( ! bp_is_post_request() ) { return; } // Cast gid as integer. $group_id = (int) $_POST['gid']; if ( groups_is_user_banned( bp_loggedin_user_id(), $group_id ) ) return; if ( ! $group = groups_get_group( $group_id ) ) return; // Client doesn't distinguish between different request types, so we infer from user status. if ( groups_is_user_member( bp_loggedin_user_id(), $group->id ) ) { $request_type = 'leave_group'; } elseif ( groups_check_user_has_invite( bp_loggedin_user_id(), $group->id ) ) { $request_type = 'accept_invite'; } elseif ( 'private' === $group->status ) { $request_type = 'request_membership'; } else { $request_type = 'join_group'; } // NOTE: WHY IS THIS BROKEN?!!? switch ( $request_type ) { case 'join_group' : if ( ! bp_current_user_can( 'groups_join_group', array( 'group_id' => $group->id ) ) ) { esc_html_e( 'Error joining group', 'buddypress' ); } check_ajax_referer( 'groups_join_group' ); if ( ! groups_join_group( $group->id ) ) { _e( 'Error joining group', 'buddypress' ); } else { echo '<a id="group-' . esc_attr( $group->id ) . '" class="group-button leave-group" rel="leave" href="' . wp_nonce_url( bp_get_group_permalink( $group ) . 'leave-group', 'groups_leave_group' ) . '">' . __( 'Leave Group', 'buddypress' ) . '</a>'; } break; case 'accept_invite' : if ( ! bp_current_user_can( 'groups_request_membership', array( 'group_id' => $group->id ) ) ) { esc_html_e( 'Error accepting invitation', 'buddypress' ); } check_ajax_referer( 'groups_accept_invite' ); if ( ! groups_accept_invite( bp_loggedin_user_id(), $group->id ) ) { _e( 'Error requesting membership', 'buddypress' ); } else { echo '<a id="group-' . esc_attr( $group->id ) . '" class="group-button leave-group" rel="leave" href="' . wp_nonce_url( bp_get_group_permalink( $group ) . 'leave-group', 'groups_leave_group' ) . '">' . __( 'Leave Group', 'buddypress' ) . '</a>'; } break; case 'request_membership' : check_ajax_referer( 'groups_request_membership' ); if ( ! groups_send_membership_request( [ 'user_id' => bp_loggedin_user_id(), 'group_id' => $group->id ] ) ) { _e( 'Error requesting membership', 'buddypress' ); } else { echo '<a id="group-' . esc_attr( $group->id ) . '" class="group-button disabled pending membership-requested" rel="membership-requested" href="' . bp_get_group_permalink( $group ) . '">' . __( 'Request Sent', 'buddypress' ) . '</a>'; } break; case 'leave_group' : check_ajax_referer( 'groups_leave_group' ); if ( ! groups_leave_group( $group->id ) ) { _e( 'Error leaving group', 'buddypress' ); } elseif ( 'public' === $group->status ) { echo '<a id="group-' . esc_attr( $group->id ) . '" class="group-button join-group btn" rel="join" href="' . wp_nonce_url( bp_get_group_permalink( $group ) . 'join', 'groups_join_group' ) . '">' . __( 'Join Group', 'buddypress' ) . '</a>'; } else { echo '<a id="group-' . esc_attr( $group->id ) . '" class="group-button request-membership" rel="join" href="' . wp_nonce_url( bp_get_group_permalink( $group ) . 'request-membership', 'groups_request_membership' ) . '">' . __( 'Request Membership', 'buddypress' ) . '</a>'; } break; } exit; }
Hi,
I have a big Problem.
I used the BuddyPress Version 10.2.0 Plugin in combination whith Ultimate Member Version 2.3.2 and bbPress Version 2.6.9. I think this combination is a little bit difficult but it finaly worked well.I just changed some settings in the BuddyPress and then i got this Error:
Fehler-Details
==============
Ein Fehler vom Typ E_ERROR wurde in der Zeile 349 der Datei /mnt/web114/d1/63/5855963/htdocs/STRATO-apps/wordpress_10/app/wp-content/plugins/buddypress/bp-core/admin/bp-core-admin-functions.php verursacht. Fehlermeldung: Uncaught ArgumentCountError: 3 arguments are required, 2 given in /mnt/web114/d1/63/5855963/htdocs/STRATO-apps/wordpress_10/app/wp-content/plugins/buddypress/bp-core/admin/bp-core-admin-functions.php:349
Stack trace:
#0 /mnt/web114/d1/63/5855963/htdocs/STRATO-apps/wordpress_10/app/wp-content/plugins/buddypress/bp-core/admin/bp-core-admin-functions.php(349): sprintf()
#1 /mnt/web114/d1/63/5855963/htdocs/STRATO-apps/wordpress_10/app/wp-includes/class-wp-hook.php(307): bp_core_activation_notice()
#2 /mnt/web114/d1/63/5855963/htdocs/STRATO-apps/wordpress_10/app/wp-includes/class-wp-hook.php(331): WP_Hook->apply_filters()
#3 /mnt/web114/d1/63/5855963/htdocs/STRATO-apps/wordpress_10/app/wp-includes/plugin.php(474): WP_Hook->do_action()
#4 /mnt/web114/d1/63/5855963/htdocs/STRATO-apps/wordpress_10/app/wp-content/plugins/buddypress/bp-core/admin/bp-core-admin-actions.php(120): do_action()
#5 /mnt/web114/d1/63/5855963/htdocs/STRATO-apps/wordpress_10/app/wp-includes/class-wp-hook.php(307): bp_admin_init()
#6 /mnt/web114/d1/63/5855963/htdocs/STRATO-apps/wordpress_10/app/wp-includes/class-wp-hook.php(331): WP_Hook->apply_filters()
#7 /mnt/web114/d1/63/5855963/htdocs/STRATO-apps/wordpress_10/app/wp-includes/plugin.php(474): WP_Hook->do_action()
#8 /mnt/web114/d1/63/5855963/htdocs/STRATO-apps/wordpress_10/app/wp-admin/admin.php(175): do_action()
#9 /mnt/web114/d1/63/5855963/htdocs/STRATO-apps/wordpress_10/app/wp-admin/plugins.php(10): require_once(‘…’)
#10 {main}
thrownAnd no – of corse I dont have an up to date back up 🙁
What can I do to fix the problem?Great thaks to all hwo want to help me
WordPress-Version 5.9.3
Aktives Theme: ColorMag (Version 2.1.2)
Aktuelles Plugin: BuddyPress (Version 10.2.0)
PHP-Version 8.0.17I am sure this has been asked before but I can’t find it. I would be very appreciative if someone could help me change the grey to my theme colors. The search bar and other navigation are all greys despite the customizer being the theme color. I use Youzify so all those pages and styling are perfect.