Search Results for 'buddypress'
-
Search Results
-
Hello. Please help me.
Can’t upload Buddypress Profile Image to anyone except ADMIN!
Users on my site cannot upload their own profile picture and cover image?
when a user trys to upload and image, error i get is:
An error occurred. Please try again later.
I have:
option is selected ‘registered members can change ….’
tried different image sizes attributes…etc
tried different image formats
tried many different plugins to force profile picture
tried many different avatar pluginsi have not found a concrete answer anywhere.
What i have found is that if i change profiles to ‘Administrator’ they can change it.
BUT i cant have all my users Administrators.How can my users change their profile/cover image?
Thanks.
Hi,
I would like to add articles with the full listing of buddypress’ actions and filters on the Documentation. I figured out that a lot of people is looking for this. I’ve done it for my personal requirements and if you can give me permissions to add an article on the doc, I’ll be very happy to share this with everybody.
🙂
Thanks a lot,
Mickael
In your Plugin Directory create a folder and a .php file with this name: bp-strong-username-password
CODE:
<?php /* Plugin Name: BP strong username and password Description: Force the new registered in BuddyPress to use strong username and password. Version: 1.0 Author: Anonymous */ add_action( 'plugins_loaded', 'plugin_load_textdomain' ); function plugin_load_textdomain() { load_plugin_textdomain( 'bp-strong-username-password', false, dirname( plugin_basename( __FILE__ ) ) . '/languages' ); } // Force Strong Username function strong_username() { global $bp; if ( !empty( $_POST['signup_username'] ) ) if ( !valid_username( $_POST['signup_username'] ) ){ $bp->signup->errors['signup_username'] = __( 'Your username is not strong enough. Use uppercase, lowercase and numbers', 'bp-strong-username-password', 'buddypress' ); } } add_action( 'bp_signup_validate', 'strong_username'); function valid_username($candidate) { $r1='/[A-Z]/'; //Uppercase $r2='/[a-z]/'; //lowercase $r3='/[0-9]/'; //numbers if(preg_match_all($r1,$candidate, $o)<1) return FALSE; if(preg_match_all($r2,$candidate, $o)<1) return FALSE; if(preg_match_all($r3,$candidate, $o)<1) return FALSE; if(strlen($candidate)<8) return FALSE; return TRUE; } // Force Strong Password function strong_validation() { global $bp; if ( !empty( $_POST['signup_password'] ) ) if ( !valid_pass( $_POST['signup_password'] ) ){ $bp->signup->errors['signup_password'] = __( 'Your password is not strong enough. Use uppercase, lowercase, numbers and special characters', 'bp-strong-username-password', 'buddypress' ); } } add_action( 'bp_signup_validate', 'strong_validation'); function valid_pass($candidate) { $r1='/[A-Z]/'; //Uppercase $r2='/[a-z]/'; //lowercase $r3='/[!@#$%^&*()-_=+{};:,?<.>]/'; // whatever you mean by special char $r4='/[0-9]/'; //numbers if(preg_match_all($r1,$candidate, $o)<1) return FALSE; if(preg_match_all($r2,$candidate, $o)<1) return FALSE; if(preg_match_all($r3,$candidate, $o)<1) return FALSE; if(preg_match_all($r4,$candidate, $o)<1) return FALSE; if(strlen($candidate)<8) return FALSE; return TRUE; }—————-
For Translation: In your plugin dir, languages folder, create this file: bp-strong-username-password-es_ES.mo with this:
Þ•<\\K]\©H©O]ùuW]ÍForce the new registered in BuddyPress to use strong username and password.Your password is not strong enough. Use uppercase, lowercase, numbers and special charactersYour username is not strong enough. Use uppercase, lowercase and numbersProject-Id-Version: BP strong username and password Report-Msgid-Bugs-To: POT-Creation-Date: 2017-07-15 19:42+0000 PO-Revision-Date: 2017-07-15 19:47+0000 Last-Translator: Anonymous Language-Team: Spanish Language: es Plural-Forms: nplurals=2; plural=n != 1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Generator: Loco - https://localise.biz/Forzar a los nuevos registrados en BuddyPress a usar nombre de usuario y contraseña fuertes.Su nombre contraseña no es lo suficientemente fuerte. Use mayúsculas, minúsculas, números y caracteres especialesSu nombre de usuario no es lo suficientemente fuerte. Use mayúsculas, minúsculas y númerosAnd this file: bp-strong-username-password-es_ES.po with this:
msgid "" msgstr "" "Project-Id-Version: BP strong username and password\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2017-07-15 19:42+0000\n" "PO-Revision-Date: 2017-07-15 19:47+0000\n" "Last-Translator: Anonymous \n" "Language-Team: Spanish\n" "Language: es\n" "Plural-Forms: nplurals=2; plural=n != 1\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "X-Generator: Loco - https://localise.biz/" #: bp-strong-username-password.php:17 msgid "" "Your username is not strong enough. Use uppercase, lowercase and numbers" msgstr "" "Tu nombre de usuario no es lo suficientemente fuerte. Use mayúsculas, " "minúsculas y números" #: bp-strong-username-password.php:41 msgid "" "Your password is not strong enough. Use uppercase, lowercase, numbers and " "special characters" msgstr "" "Tu contraseña no es lo suficientemente fuerte. Use mayúsculas, " "minúsculas, números y caracteres especiales" #. Description of the plugin msgid "" "Force the new registered in BuddyPress to use strong username and password." msgstr "" "Forzar a los nuevos registrados en BuddyPress a usar nombre de usuario y " "contraseña fuertes."Hi,
There is no title for the buddypress tab pages. In this Screenshot, Bohubrihi is my site title. But before the separator, there should be a page title. The page title is missing for all the pages in the Buddypress tabs. This looks odd. Is it default?
Topic: Fatal error
i am developing a website using buddypress and after creating the register page, when someone wants to sign up, after typing the info and press the sign up button, this error appears
Fatal error: Call to undefined function bp_get_settings_slug() in /home/yeboah2/public_html/winderrands/wp-content/plugins/buddypress/bp-core/bp-core-filters.php on line 1072instead of redirecting the new user to the activation page, it doesn”t, that error shows up but on the users page, i see the new user created but the user can’t activate his/her account.
someone kindly help me fix this problem please.
thanks in advanceHello,
I recently updated BuddyPress to version 2.8.2. After that most of the links from TOP RIGHT profile menu disappeared (for the front end user). I used to have:
Edit my Profile
Activity
Profile
Notifications
Messages
Groups
Forums
Events
Docs
Log OutNow all I have is
m (which is a broken link to mysite.com/m )
Log OutI am using BuddyApp Child Theme, WordPress version 4.4.10
All those links are still available on back end and on the actual profile page:
mysite.com/member/user/All my active plugins:
bbPress
bbPress Votes
BuddyPress
BuddyPress Docs
Check Email
Duplicate Post
Easy Knowledge Base
Envato WordPress Toolkit
Events Manager
GD bbPress Attachments
LDAP/Active Directory Login for Intranet sites
Really Simple SSL
Visual Composer Center Info Extension (our own plugin)
Visualizer: Charts and Graphs Lite
WP FullCalendar
WP-Mail-SMTP
WP-Polls
WPBakery Visual ComposerWould you please help me troubleshoot the issue?
If not I at least would like to put a dynamic link to user profile somewhere on the page so members could access all those links directly from their profile as a workaround for now, I can open another topic for that or search.Thank you,
Maria
This is the member profile page of wordpress and I want to know which function is being used and its location to get the count of these options in buddypress.
Topic: Add new members filter
By default buddypress filter members by Last Active, Newest Registered, Alphabetical
I need to add an extra filter:Filter all the users with the same xprofile_field_id=1 value of current user
Thank You.
We use a membership script integrated with WP and BuddyPress. When users unsubscribe from emails in script, they still get email notifications from BuddyPress (private messages notifications, etc). This is bad.
It’s easy for us to assign these members a custom role. Is there a way to prevent BuddyPress from sending emails to these users who have this custom role?
I see here that you can create functions for creating new capabilities (for User Role Editor plugin):
Is there a function, or another method I can use to prevent BuddyPress from sending of all emails for users who have specific custom role?
Thanks for any suggestions!
I want to change the color of my post update button but I only want to change the bbpress button color not my entire sites css button color.
I found this:
#buddypress input[type=”submit”],
#buddypress input[type=”submit”]:hover {
background: transparent !important;
border: none !important;
color: #fff !important;
}#buddypress .standard-form div.submit {
padding: 0 !important;
}#buddypress .standard-form div.submit input {
margin-right: 0 !important;
}But that didn’t work…
I am guessing if I could figure out what button buddypress is using to color that button that way or if there is a css override for the Post Update button on the activity page of Buddypress what would be the most idea thing for me.
Like here on this page the submit button is yellow with white text…if I could figure out a way to color the background of that “post update” button then I could maybe use that…I dunno I’m a css dummy and just fumble my way through guessing at stuff.
Any help would be much appreciated.
Hi ,
Is it possible to allow members of group to use WYSIWYG editor/rich text editor or any visual editor instead of simple text area , I want all images , embed videos etc. to post.
If any plugin/add-on/ hook/filter available for this then please guide me through this.
I am a developer so can make changes wherever required in code.
Thanks.
