-
Henry Wright replied to the topic Add @mentions in plugin in the forum How-to & Troubleshooting 10 years, 2 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 10 years, 2 months ago
Can you show a screenshot?
-
Maya Singh's profile was updated 10 years, 2 months ago
-
discografias mega 320kbps's profile was updated 10 years, 2 months ago
-
zanenewberry's profile was updated 10 years, 2 months ago
-
preguntas para ask's profile was updated 10 years, 2 months ago
-
rosyteddy started the topic How to show an expandable comment form in the stream? in the forum How-to & Troubleshooting 10 years, 2 months ago
And how to disable the threaded reply buttons …. so that an easy UI is there ?
Any responsive theme that does this ? -
rosyteddy replied to the topic Disable or Hide Private Message Button in the forum How-to & Troubleshooting 10 years, 2 months ago
@namrons in which file this code is to be added ?
-
Henry Wright replied to the topic Disable or Hide Private Message Button in the forum How-to & Troubleshooting 10 years, 2 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 10 years, 2 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 10 years, 2 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 10 years, 2 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 10 years, 2 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 10 years, 2 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?
-
mejores frases de futbol's profile was updated 10 years, 2 months ago
-
Henry Wright replied to the topic Registration page does not work in the forum How-to & Troubleshooting 10 years, 2 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 10 years, 2 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 10 years, 2 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 10 years, 2 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 10 years, 2 months ago
Do you have code snippets in your functions.php file? Try removing those too then doing the same testing steps.
- Load More