-
Henry Wright replied to the topic Upload avatar after activation in the forum How-to & Troubleshooting 7 years, 6 months ago
I did a quick search and found Buddypress Upload Avatar Ajax. Not sure if it helps?
-
Henry Wright replied to the topic Photo media file compression in the forum How-to & Troubleshooting 7 years, 6 months ago
How are the users uploading the media?
-
Henry Wright replied to the topic Questions about a new community project in the forum How-to & Troubleshooting 7 years, 6 months ago
1- need to create a website where users login
BuddyPress can do this but the rest of your requirements will either need to be custom coded or you’ll need to find a plugin because BuddyPress doesn’t have that functionality out-of-the-box.
-
Henry Wright replied to the topic Where to put custom CSS for BP Child theme in the forum How-to & Troubleshooting 7 years, 6 months ago
In your child theme, you’ll have a style.css file. If you don’t then you can create one so your folder structure will look like this:
wp-content/themes/your-child-theme/style.css
-
Henry Wright replied to the topic Solved – Customize the login page of wordpress in the forum Installing BuddyPress 7 years, 7 months ago
The Customizing Labels, Messages, and URLs article should help.
-
Henry Wright replied to the topic Resend activation email in the forum How-to & Troubleshooting 7 years, 7 months ago
You can trigger an activation email manually:
bp_core_signup_send_validation_email( $user_id, $user_email, $activation_key );
You will need to get
$user_id
,$user_email
and$activation_key
before hand. -
Henry Wright replied to the topic Membership in the forum Installing BuddyPress 7 years, 7 months ago
You’ll probably need a plugin for that, or even custom code a solution because, by default, BuddyPress doesn’t give members the opportunity to create new pages.
-
Henry Wright replied to the topic Solved – Customize the login page of wordpress in the forum Installing BuddyPress 7 years, 7 months ago
Check out the article on Page Templates.
-
Henry Wright replied to the topic Ephemeral Messages in the forum Installing BuddyPress 7 years, 7 months ago
You’d need to build a custom solution because I don’t think there’s anything available, at least for BuddyPress.
Take a look at the WordPress Transients API. That might help.
-
Henry Wright replied to the topic Ephemeral Messages in the forum Installing BuddyPress 7 years, 7 months ago
So there is no easy way to program around it?
What are you trying to do?
-
Henry Wright replied to the topic Ephemeral Messages in the forum Installing BuddyPress 7 years, 7 months ago
Private messaging in BuddyPress is persistent (saved to the db). There is also “flash” messages but these are stored as a cookie and are removed after the page request.
-
Henry Wright replied to the topic Hosted website buddypress activity when clicked redirects to localhost in the forum How-to & Troubleshooting 7 years, 7 months ago
Did you move WordPress? If so, check out the Moving WordPress article.
-
Henry Wright replied to the topic Best gallery to use in BP in the forum Creating & Extending 7 years, 7 months ago
There are a few to choose from. I haven’t tried lately myself but these seem to be popular:
-
Henry Wright replied to the topic Solved – Customize the login page of wordpress in the forum Installing BuddyPress 7 years, 7 months ago
If you’re having problems with Theme My Login, try Customizing the Login Form instead.
-
Henry Wright replied to the topic Using wp_mail and emails in the forum How-to & Troubleshooting 7 years, 7 months ago
Can you instead use the
wp_mail
filter to change the message?add_filter( 'wp_mail', function( $array ) {
// Set conditions here.$array['message'] = 'Change this';
return $array;
} ); -
Henry Wright replied to the topic Enable BP_ENABLE_ROOT_PROFILES & Normal Profile Pages in the forum Installing BuddyPress 7 years, 7 months ago
That page is made up of template parts but you would start by editing your-child-theme/buddypress/members/single/index.php. If the file doesn’t exist you will need to create it. For more information check out the Template Hierarchy article
Ref https://codex.buddypress.org/themes/theme-compatibility-1-7/template-hierarchy/
-
Henry Wright replied to the topic Using wp_mail and emails in the forum How-to & Troubleshooting 7 years, 7 months ago
You can change the content type of WordPress emails using the
wp_mail_content_type
filter:add_filter( 'wp_mail_content_type', function( $content_type ) {
$content_type = 'text/html';
return $content_type;
} ); -
Henry Wright replied to the topic I deleted my BuddyPress. NO! in the forum Installing BuddyPress 7 years, 7 months ago
I deleted my BuddyPress
There’s 2 parts to BuddyPress. There’s the database and then there’s the files and folders.
If you deleted the database then you’ll need to use a backup. If you’ve deleted the BuddyPress files and folders only, then you can just upload them and everything should work again.
-
Henry Wright replied to the topic Enable BP_ENABLE_ROOT_PROFILES & Normal Profile Pages in the forum Installing BuddyPress 7 years, 7 months ago
Hi Christopher,
I’ve not seen this done before probably because of the issues it would create with reference to duplicate content.
That’s not to say it isn’t possible but my guess is it won’t be easy.
-
Henry Wright replied to the topic Sorry, you are not allowed to access this page. in the forum How-to & Troubleshooting 7 years, 7 months ago
Nice one r-a-y!
- Load More
@henrywright
Active 8 months, 1 week ago