-
Henry Wright replied to the topic What can the username contain and how many letters, what characters etc? in the forum How-to & Troubleshooting 8 years, 8 months ago
…but WordPress multisite and regular WordPress have different character restrictions in the username.
Nice 🙁
-
Henry Wright replied to the topic Adding line to Buddypress registration page in the forum How-to & Troubleshooting 8 years, 8 months ago
That would be buddypress/members/index-register.php. See the BuddyPress Template Hierarchy article for more details.
Ref: https://codex.buddypress.org/themes/theme-compatibility-1-7/template-hierarchy/
-
Henry Wright replied to the topic What can the username contain and how many letters, what characters etc? in the forum How-to & Troubleshooting 8 years, 8 months ago
Update: With reference to usernames on the wordpress.org forum:
Since [dotorg11555] only a-z and 0-9 are allowed for usernames.
Ref: https://meta.trac.wordpress.org/ticket/1308#comment:13
I’m not sure if this change will extend to the WordPress platform and BuddyPress.
-
Henry Wright replied to the topic What can the username contain and how many letters, what characters etc? in the forum How-to & Troubleshooting 8 years, 8 months ago
sanitize_user()
is used on the username at signup time so it should be alphanumeric characters plus _ space . – * and @.Ref: https://codex.wordpress.org/Function_Reference/sanitize_user
-
Henry Wright replied to the topic Certain emails not getting sent in the forum How-to & Troubleshooting 8 years, 8 months ago
Did Mandrill recently update their pricing to remove the free option?
-
Henry Wright replied to the topic wp_mail_from BP_email in the forum Creating & Extending 8 years, 8 months ago
Check you’re running PHP 5.3 or higher, just in case that’s the issue.
-
Henry Wright replied to the topic how to manually upgrade to 2.5.0 from 2.4.3 in the forum Installing BuddyPress 8 years, 8 months ago
Try WP CLI, it’s brilliant for situations where you have shell access only.
-
Henry Wright replied to the topic Creating a modern web community in the forum Ideas 8 years, 8 months ago
The alternative to having WordPress posts as “topics” and WordPress comments as “topic replies” is to theme bbPress. Check out the Theme Compat article for some introductory info. You can either use an already-made theme, or have a go at developing something unique yourself.
-
Henry Wright replied to the topic Moderating Forum Posts – Please Help in the forum How-to & Troubleshooting 8 years, 9 months ago
You should ask this same question over at bbPress. Those guys handle forum-related questions 🙂
-
Henry Wright replied to the topic place group & user meta outside of the header in the forum How-to & Troubleshooting 8 years, 9 months ago
This can be done by modifying your theme. BuddyPress uses a Template Hierarchy. If you have any specific questions feel free to ask them here 🙂
-
Henry Wright replied to the topic How do I change the 'activation successful' text? in the forum How-to & Troubleshooting 8 years, 9 months ago
I suggest you localise. Take a look at at something like Poedit. For more info see the Customizing Labels, Messages, and URLs article.
-
Henry Wright replied to the topic Disable Private Messaging TO Specific Users in the forum How-to & Troubleshooting 8 years, 9 months ago
Try this:
function juliahart18_filter_message_recipients( $message ) {
[Read more]
$i = 0;
foreach ( $message->recipients as $recipient ) {
// 1 is the ID of the user you want to exclude from the message.
if ( $recipient->user_id == 1 ) {
unset( $message->recipients[$i] );
}
$i++;
}
}
add_action(… -
Henry Wright replied to the topic Remove some features from activity plus in the forum How-to & Troubleshooting 8 years, 9 months ago
Hi John
If you’re referring to the BuddyPress Activity Plus plugin, try asking this same question on their support forum.
-
Henry Wright replied to the topic delete Comments on all pages in the forum How-to & Troubleshooting 8 years, 9 months ago
Check out the Template Hierarchy article. It will show you how to set up templates for BuddyPress. You can then remove the comment section and comment form from the page(s) you want.
-
Henry Wright replied to the topic Refresh Page after Change Profile Photo & Cover Image in the forum Installing BuddyPress 8 years, 9 months ago
You could create a mini plugin for this which uses wp_enqueue_script to enqueue a custom script.
-
Henry Wright replied to the topic Files guide in the forum How-to & Troubleshooting 8 years, 9 months ago
The Template Hierarchy article is what you’re looking for.
-
Henry Wright replied to the topic Refresh Page after Change Profile Photo & Cover Image in the forum Installing BuddyPress 8 years, 9 months ago
Any help on which file and function is the function to uploading avatar & cover image?
These classes both extend
BP_Attachment
:https://github.com/buddypress/BuddyPress/blob/master/src/bp-core/classes/class-bp-attachment-avatar.php
https://github.com/buddypress/BuddyPress/blob/master/src/bp-core/classes/class-bp-attachment-cover-image.php -
Henry Wright replied to the topic hiding menu tabs in bp-custom file not working for loggedin user nav menu in the forum How-to & Troubleshooting 8 years, 9 months ago
You could hide that with CSS?
#li-nav- {
display: none;
} -
Henry Wright replied to the topic New members sometimes don't appear in stream in the forum How-to & Troubleshooting 8 years, 9 months ago
Try asking Super Socializer to add activity stream support.
-
Henry Wright replied to the topic Redirect login after activation in the forum Installing BuddyPress 8 years, 9 months ago
Take a look at Theme My Login. That plugin has a redirection module which will help you do that.
- Load More
@henrywright
Active 8 months, 1 week ago