-
Henry Wright replied to the topic Filter Recent Topics/Replies by Parent Forum? in the forum How-to & Troubleshooting 6 years, 7 months ago
Hi
Try asking your question over at bbPress. They handle forum-related questions.
-
Henry Wright replied to the topic Cron Jobes Issue in the forum How-to & Troubleshooting 6 years, 7 months ago
Further to what @djpaul said, make sure you have
DISABLE_WP_CRON
set tofalse
in your wp-config.php file.define( 'DISABLE_WP_CRON', false );
-
Henry Wright replied to the topic GDPR compliance in the forum Requests & Feedback 6 years, 8 months ago
I’m not sure that specific field will be added to core but I’m sure a plugin will be easy to build
-
Henry Wright replied to the topic Hey all, Its been a while in the forum Miscellaneous 6 years, 8 months ago
Glad to see you again on here @mcpeanut. Do share your BuddyPress website and story behind it when it’s ready!
-
Henry Wright replied to the topic CSS file changes not displayed in the forum How-to & Troubleshooting 6 years, 8 months ago
You might have caching going on. Try asking your host if they are caching your CSS assets.
-
Henry Wright replied to the topic CSS file changes not displayed in the forum How-to & Troubleshooting 6 years, 8 months ago
You should add custom CSS to your theme’s style.css document.
For example wp-content/themes/your-child-theme/style.css
-
Henry Wright replied to the topic How is it possible to sign up with the same user name? in the forum How-to & Troubleshooting 6 years, 8 months ago
The “Name” field isn’t unique. You can have 2 users with the same name if we are talking about that field.
-
Henry Wright replied to the topic How is it possible to sign up with the same user name? in the forum How-to & Troubleshooting 6 years, 8 months ago
This shouldn’t be possible. BuddyPress checks if a username exists before registering the user.
-
Henry Wright replied to the topic How to make members page blur in the forum How-to & Troubleshooting 6 years, 8 months ago
You could filter body_class and add a logged-in and logged-out class. Then style in your child theme’s style.css document. For example:
body.logged-out {
// Do some blurring
} -
Henry Wright replied to the topic Plugin Fatal error: Call to undefined function bp_is_active() in the forum How-to & Troubleshooting 6 years, 8 months ago
“bp_loaded” will also get the job done. You just need to find a hook that’s appropriate. A function needs to be defined before you call it so always worth keeping track of the load order in both WordPress and BuddyPress.
-
Henry Wright replied to the topic Plugin Fatal error: Call to undefined function bp_is_active() in the forum How-to & Troubleshooting 6 years, 8 months ago
Try wrapping your call to
bp_is_active()
in a function hooked to something likewp
.For example:
add_action( 'wp', function() {
// Call bp_is_active() here
} );You need to do this because it’s likely your plugin is loaded before BuddyPress, hence the
bp_is_active()
function isn’t defined at that point. -
Henry Wright replied to the topic BuddyPress email notifications not working anymore in the forum How-to & Troubleshooting 6 years, 9 months ago
You could report the issue to the WP Mail SMTP plugin author. They usually appreciate the bug report and often fix.
-
Henry Wright replied to the topic WordPress to BuddyPress profile sync in the forum How-to & Troubleshooting 6 years, 9 months ago
Unfortunately, the fields are synchronized only when the profile is updated. I do not know how to start mass synchronization
This is likely because you’re hooking to a hook fired at profile update. You’ll need to hook your code to something that gets fired at another point in time.
-
Henry Wright replied to the topic Why is Members page not part of the BuddyPress menu? in the forum Requests & Feedback 6 years, 9 months ago
I wonder why Members page is not part of the BuddyPress menu?
Good question! This is something you can change at the theme level. Nearly all areas of BuddyPress can be customised. If you need help feel free to post questions and open new topics.
-
Henry Wright replied to the topic Links in the forum How-to & Troubleshooting 6 years, 9 months ago
You’ll need to use HTML. Check out this guide: https://developer.mozilla.org/en-US/docs/Learn/HTML/Introduction_to_HTML/Getting_started
-
Henry Wright replied to the topic Accessing BP_Groups_Member::get_group_ids in Theme Function in the forum Creating & Extending 6 years, 10 months ago
I’m not sure why I would need to hook to something?
Imagine a scenario where your functions.php file is loaded before something else. That something else won’t be available to you in functions.php.
-
Henry Wright replied to the topic [Solved] Frontend event, blog and woocommerce plugin for Buddypress in the forum Third Party Plugins 6 years, 10 months ago
Check out the plugins here https://wordpress.org/plugins/tags/buddypress/
These plugin authors have used the “buddypress” tag which indicates a compatibility with BuddyPress.
Hope it helps!
-
Henry Wright replied to the topic PHP 7.0 en 7.1 update needed, site is slow in the forum How-to & Troubleshooting 6 years, 10 months ago
BuddyPress should be compatible with PHP 7.0 and 7.1. What conflict are you seeing?
-
Henry Wright replied to the topic 1 forum on homepage in the forum Installing BuddyPress 6 years, 10 months ago
Try asking at bbPress. They handle all forum related questions.
-
Henry Wright replied to the topic Accessing BP_Groups_Member::get_group_ids in Theme Function in the forum Creating & Extending 6 years, 10 months ago
I just noticed you want to schedule your callback. You will need to use the method described here https://codex.wordpress.org/Function_Reference/wp_cron
- Load More
@henrywright
Active 8 months, 1 week ago