Search Results for 'wordpress'
-
Search Results
-
Hello,
I have a problem for add friends on my website
I see a link https://www.myurl.org/members/allianse/friends/requests/accept/21?_wpnonce=
instead of
https://www.myurl.org/members/friends/requests/accept/21/?_wpnonce=
/ lost
Can you help me for resolve the issue ? Where can I find the file impacted ?
I am using the boss theme, invite anyone plugin, wordpress 7.1, a litespeed web server with litespeed cache and PHP7
Best regards
Christophe
Hi, hoping anyone can help me with this. I have jut been made aware that the search filter no longer works on this site: http://interfaithfoundation.org/groups/ministers/
This has been working ever since the site was set up over a year ago but has just stopped working.
When a name or anything else is entered, it does not apply the filter and simply lists all of the members.
Any help would be much appreciated. WordPress 4.6.2, Buddypress 2.7.4
Hi,
I have a wordpress site which has a few plugins. Mainly Buddypress, Yeost SEO, Memberpress, Woo-commerce. Everything was working fine for 2 months.
I just installed an affiliate plugin called Affiliate Royale and now all of Buddypress pages (activity, profile, members, group) are redirecting to the Affiliate Royale page. The buddypress pages does load for 1-2 seconds before it is redirected to the affiliate-dashboard page. PS: The Affiliate plugin is not affecting other pages in the site.
To understand what i am saying please see connectupz.com/activity
Please advice how to resolve this issue. Thanks in Advance..
Hello I am getting a WordPress failure error screen when I try to accept a group invite or join one without an invite. I get the following error in my browser debug mode.
GET http://btdtwebsite.com/members/galloinfligo/groups/invites/accept/1/?_wpnonce=f4b590ec80 403 (Forbidden)
Navigated to http://btdtwebsite.com/members/galloinfligo/groups/invites/accept/1/?_wpnonce=f4b590ec80I have tried all of your troubleshooting methods, and it does this on both torch and edge browsers. I have changed to different permalinks, and will try a new theme after writing this.
the screen that I see in the browser is a blank white screen with a box that says:
Are you sure you want to do this?
Please try again.
thanks for any help.
Topic: Buddypress Login Box Error
Hi,
I am launching a new website – FoodFitNature.Com – and I am having issues with a sign-up box located on my website sidebar. I have attached a picture of the issue here – https://snag.gy/K7zwnQ.jpg – as you can see circled in red the Username box says “usernameusername” and the password box says “passwordpassword”. Can someone help with this fix?
BuddyPress Version – 2.7.4
Wordpress Version – 4.7.1
Website – http://www.foodfitnature.com
Picture of error – https://snag.gy/K7zwnQ.jpgI added the following code (from this post) to enable email addresses in user profiles – which works but only when a user is logged in.
How can I change it to show the email address regardless of whether one is logged in or not?
function tiquality_add_custom_field() { if ( bp_is_active( 'xprofile' ) ) : if ( is_user_logged_in() ) { ?> <div class="bp-widget <?php bp_the_profile_group_slug(); ?>"> <table class="profile-fields"> <tr class="my_mail"> <td class="label">Contact me</td> <td class="data"><a href="mailto:<?php bp_displayed_user_email(); ?>"><?php bp_displayed_user_email(); ?></a></td> </tr> </table> </div> <?php } endif; } add_action('bp_profile_field_buttons', 'tiquality_add_custom_field');I tried deleting the line…
if ( is_user_logged_in() ) {but it took down the whole site.
WP v 4.7.1
Dear all,
maybe this should be question for core WordPress, so I apologise in advance 😉
I’m importing 100s of users from different non WordPress website to new WP with BuddyPress 🙂
The old database has User/Comments/Mentions… all of this is going to be transferred…
So, is there any way I can stop all email notifications (when user is created etc) and all BuddyPress notifications when I transfer the comments with existing @ mentions?
Thanks a lot 🙂
Hi. first i want apologize for my english :E
Now to the point. I need to turn on comments from non registred users in actvity stream.
I found this plugin (https://wordpress.org/plugins/bp-include-non-member-comments/), but it’s too old and doesn’t work. I want to ask you, if there is any other similar plugin, or another solution.
I am using last version of WP and BP.
Thank you for your help.
Topic: Clear WP Errors at Signup
Hi all,
I have customized the way Buddypress registers members by checking to see if the Display Name already exists. If a Display Name is found, I create a new WP error. The problem is, once the user changes their Display Name to something that isn’t found, the error persists when you get the success signup screen. I’ve tried manually clearing it, but not getting any results.
A few details:
Wordpress Version: 4.7.1
Buddypress Version: 2.7.4I’d like to keep my site anonymous if that’s ok.
Here is what I’ve done in the php files to achieve this:
buddypress\bp-members\classes\class-bp-signup.php
public static function add_backcompat( $user_login = '', $user_password = '', $user_email = '', $usermeta = array() ) { global $wpdb; $display_capture = sanitize_title($usermeta["field_1"]); //CUSTOM CODE $display_capture = ucfirst(strtolower($display_capture)); //CUSTOM CODE $user_id = wp_insert_user( array( 'user_login' => $user_login, 'user_pass' => $user_password, 'display_name' => $display_capture, //CUSTOM CODE 'user_email' => $user_email ) );wordpress\wp-includes\user.php
function wp_insert_user( $userdata ) { global $wpdb; /* Lots of code before here... */ if ( empty( $userdata['display_name'] ) ) { if ( $update ) { $display_name = $user_login; } elseif ( $meta['first_name'] && $meta['last_name'] ) { /* translators: 1: first name, 2: last name */ $display_name = sprintf( _x( '%1$s %2$s', 'Display name based on first name and last name' ), $meta['first_name'], $meta['last_name'] ); } elseif ( $meta['first_name'] ) { $display_name = $meta['first_name']; } elseif ( $meta['last_name'] ) { $display_name = $meta['last_name']; } else { $display_name = $user_login; } } else { $display_name = $userdata['display_name']; } //CUSTOM CODE $display_name = ucfirst(strtolower($display_name)); $display_name_check = $wpdb->get_var( $wpdb->prepare("SELECT ID FROM $wpdb->users WHERE display_name = %s AND user_login != %s LIMIT 1" , $display_name, $user_login)); if($display_name_check) { return new WP_Error( 'existing_display_name', __( 'Sorry, that display name already exists!' ) ); } /* Lots of code after here... */ }This successfully checks for the existence of a display name already in the database. It displays an error like it should and doesn’t allow the user to register. Now the only issue, how to clear the error when the user changes the display name to something not in the database?
As stated earlier, once the error occurs, it will persist through to the success message. I’ve confirmed that the error does not occur if the user selects a display name not currently being used on the first registration attempt.
I appreciate your time and help, thank you.
Hi support team,
On this page https://www.beforeplastic.com/members/beforeplastic/share-stories/
A non-logged in user can see the “Add Friend” button
Add friends was disabledAlso displaying is an unpublished post in draft mode. Shouldn’t these be hidden?
I am running wordpress 4.7.1. and buddy press 2.7.4
I am using a non-bundled theme but changing my theme may crash my site so don’t want to risk it.
Topic: front.php not working?
Okay, so I took the wordpress template files and put them in my theme. I then created front.php located at: mytheme/community/single/front.php
So what am I doing wrong? I copied my index.php and took out the header to see if it would work. It didn’t.
Also, where is all of this getting called from? It’s sooo confusing lol.
Hi,
I’m writing a WordPress/Buddypress installation script in bash with wp-cli.
The script installs a few plugins including buddypress.
After installing the plugins, the script needs to get the buddypress pages ids (activity, members, register…), but it seems that they are created only when the site admin logs in for the first time.
Is there a way to manually register these pages so that I could do this using wp-cli (or simple bash)?Thanks in advance.
regards