-
Henry Wright replied to the topic Members behind login show up in Google search results in the forum How-to & Troubleshooting 8 years, 8 months ago
How are you restricting access to those pages? If Google can see the content then those pages aren’t private. BuddyPress doesn’t make content private by default, neither does it try to.
-
Henry Wright replied to the topic How to create activity streams based on words or hashtags? in the forum How-to & Troubleshooting 8 years, 8 months ago
You will need to use
bp_before_has_activities_parse_args
for this. The article below has some really great examples to get you started:I’d imagine
search_terms
would be the most suitable parameter to filter in your case. -
Henry Wright replied to the topic Add @mentions in plugin in the forum How-to & Troubleshooting 8 years, 8 months ago
I guess the awpcp plugin will need to add @-mention support to their comment form. Try asking this same question on their support forum.
-
Henry Wright replied to the topic Profile is Forcing avatar upload in the forum Installing BuddyPress 8 years, 8 months ago
Can you show a screenshot?
-
Henry Wright replied to the topic Disable or Hide Private Message Button in the forum How-to & Troubleshooting 8 years, 8 months ago
For public messages, try this:
add_filter( 'bp_get_send_public_message_button', function( $r ) {
if ( friends_check_friendship( bp_loggedin_user_id(), bp_displayed_user_id() ) ) {
return $r;
} else {
$r['component'] = '';
return $r;
}
} ); -
Henry Wright replied to the topic Registration page does not work in the forum How-to & Troubleshooting 8 years, 8 months ago
Try doing everything together. So you should be testing under the following:
Twenty Fifteen
No plugins activated aside from BuddyPress
Nothing in functions.php
No bp-custom.php file
Latest WP
Latest BPThat should make sure there’s no custom JavaScript running.
To take things further you could test on a fresh database.
-
Henry Wright replied to the topic Group forum style question in the forum How-to & Troubleshooting 8 years, 8 months ago
buddypress.php is a generic template to be using. Take a look at the Template Hierarchy article for info on the various templates available to BuddyPress.
This bbPress article will also be useful: https://codex.bbpress.org/themes/theme-compatibility/
-
Henry Wright replied to the topic Chaning DB prefix in the forum How-to & Troubleshooting 8 years, 8 months ago
How are you changing your WordPress table prefix?
-
Henry Wright replied to the topic Where's the plugins directory page? in the forum Third Party Plugins 8 years, 8 months ago
You should be able to go to Plugins > Add new in your WordPress admin area.
-
Henry Wright replied to the topic Registration page does not work in the forum How-to & Troubleshooting 8 years, 8 months ago
I’m trying to think if there’s anything else you can check. Humm? Usually in cases such as this the problem is caused by either:
a plugin
your active theme
something inside bp-custom.php (if you have one)
something inside functions.phpIt’s strange things work in Chrome but not in FF. I’m wondering if the issue could be JavaScript related?
-
Henry Wright replied to the topic Registration page does not work in the forum How-to & Troubleshooting 8 years, 8 months ago
Do you have a bp-custom.php file? If so, make sure there’s no code snippets in that. The aim is to remove anything that might be causing the reg page to not work. I’ve tested on a fresh install running Twenty Thirteen and can’t reproduce the problem. Also make sure you’ve upgraded BP to the latest version.
-
Henry Wright replied to the topic buddypress upload button gone in the forum How-to & Troubleshooting 8 years, 8 months ago
Hi Sammy
What theme are you using and what plugins do you have activated?
-
Henry Wright replied to the topic Disable or Hide Private Message Button in the forum How-to & Troubleshooting 8 years, 8 months ago
Try this:
add_filter( 'bp_get_send_message_button', function( $array ) {
if ( friends_check_friendship( bp_loggedin_user_id(), bp_displayed_user_id() ) ) {
return $array;
} else {
return '';
}
} ); -
Henry Wright replied to the topic Messages count outside member profile using loggedin_user_nav in the forum How-to & Troubleshooting 8 years, 8 months ago
I’d guess that’d be a bug because the count should display site-wide. You could open a ticket on Trac for this.
-
Henry Wright replied to the topic Registration page does not work in the forum How-to & Troubleshooting 8 years, 8 months ago
Do you have code snippets in your functions.php file? Try removing those too then doing the same testing steps.
-
Henry Wright replied to the topic Registration page does not work in the forum How-to & Troubleshooting 8 years, 8 months ago
In that case it could be your theme?
-
Henry Wright replied to the topic Registration page does not work in the forum How-to & Troubleshooting 8 years, 8 months ago
8. Do you have any plugins other than BuddyPress installed and activated? If so, which ones? Yes (list is long so I’ll detail if needed)
This is likely to be the issue. Sometimes a rogue plugin will cause problems. Your best bet is to deactivate each plugin, one at a time, and check to see if the issue gets fixed. As soon as the reg page b…[Read more]
-
Henry Wright replied to the topic Member pages won't display members. Please help! in the forum How-to & Troubleshooting 8 years, 8 months ago
Has the member who registered logged in yet? They only become active once logged in and only then will they appear in the members directory.
-
Henry Wright replied to the topic WordPress users are Buddypress members? in the forum How-to & Troubleshooting 8 years, 8 months ago
I’ve not used the plugin myself so am not familiar with how exactly users are confirmed or unconfirmed. Try opening a topic on the plugin’s support forum asking this same question.
-
Henry Wright replied to the topic Why Does $bp Function Show No Output? in the forum Creating & Extending 8 years, 8 months ago
You need to use
global $bp;
before trying to use it. - Load More
@henrywright
Active 8 months, 1 week ago