-
Henry Wright replied to the topic [Resolved] Password reset template in the forum How-to & Troubleshooting 9 years, 10 months ago
No worries @jamesduffell. I’ve used the plugin a number of times with BuddyPress and have found them to work seamlessly together.
-
Jeremy Pry replied to the topic [Resolved] Infinite loop when posting group activity comment in the forum How-to & Troubleshooting 9 years, 10 months ago
Thanks all for the quick replies. I don’t mean to ignore all of your helpful questions and suggestions, but those may not be needed anymore.
After getting a chance to speak with a colleague who’s been out of the office for a while, I was able to identify the problem here. A function from a custom plugin was filtering both the
bp_before_has_activit…[Read more] -
Jeremy Pry started the topic [Resolved] Infinite loop when posting group activity comment in the forum How-to & Troubleshooting 9 years, 10 months ago
Under certain circumstances, there is an infinite loop inside the
bp_legacy_theme_new_activity_comment()function. Specifically, when all of thesecondary_item_idfields are zero, the$parent_idwill continually be set to zero. An infinite loop ensues and eventually the script will time out. This causes new activity items to not display until the…[Read more] -
jamesduffell replied to the topic [Resolved] Password reset template in the forum How-to & Troubleshooting 9 years, 10 months ago
That did the trick perfectly, a little HTML implementation and it’s just what I was after.
Cheers
-
jamesduffell replied to the topic [Resolved] Password reset template in the forum How-to & Troubleshooting 9 years, 10 months ago
@Henry Wright, thank-you for the tip off I shall check that one out.
-
Stacy (non coder) replied to the topic Getting error saying Buddypress Group photo large? in the forum Showcase 9 years, 10 months ago
My host supports all those and my wordpress is the latest. Stil having this issue since the latest bp upgrade.
-
Stacy (non coder) replied to the topic Buddypress Cover Image Not Working in the forum How-to & Troubleshooting 9 years, 10 months ago
This is BP as I’m still unable to get any cover to upload with it saying ‘http” despite my large upload size allowance. The group user photo wont crop either.
-
Henry Wright replied to the topic Add $_POST data before submitting registration in the forum How-to & Troubleshooting 9 years, 10 months ago
How about something like
bp_signup_pre_validate? -
Slava Abakumov replied to the topic [Resolved] BP 2.6 and BuddyPress Group Extras Plugin in the forum Third Party Plugins 9 years, 10 months ago
Fixed in repo. Hopefully will package the release this week with some other fixes.
Meanwhile, you can download the plugin code from github. -
Slava Abakumov replied to the topic [Resolved] BP 2.6 and BuddyPress Group Extras Plugin in the forum Third Party Plugins 9 years, 10 months ago
Part of the issue is fixed, see github.
<strike>New nav API requires me to rewrite drag-n-drop nav reordering feature completely, but I’m lazy and trying to find a workaround.</strike>
WIP.edited by slaFFik, thanks to @boonebgorges for the assistance
-
Slava Abakumov replied to the topic Redirect to Another Page and Not staying on the Right Page in the forum Third Party Plugins 9 years, 10 months ago
There is no such error on front-end (just tested).
Do you have this somewhere in wp-admin area? -
Slava Abakumov replied to the topic [Resolved] BP 2.6 and BuddyPress Group Extras Plugin in the forum Third Party Plugins 9 years, 10 months ago
I have some thoughts regarding the issue. Will try to test them this night.
-
David Cavins replied to the topic Autocomplete usernames when cosing private message in the forum How-to & Troubleshooting 9 years, 10 months ago
That’s the default behavior. If you’re not getting a list of matches, open your browser console to see what’s going wrong with the AJAX request that fetches the list of matches.
Note that if you type the @ symbol, you won’t find matches, so just start typing the username or display name.
-
Henry Wright replied to the topic [Resolved] Password reset template in the forum How-to & Troubleshooting 9 years, 10 months ago
The Theme My Login plugin does that quite well.
-
Henry Wright replied to the topic Advice needed – BuddyPress & Listings site in the forum How-to & Troubleshooting 9 years, 10 months ago
This is the kind of thing I’d do:
add_action( 'init', function() {
// Bail if the user is logged in.
if ( is_user_logged_in() ) {
return;
}// Check if the listing page is being viewed here.
// Redirect somewhere.
bp_core_redirect( bp_get_root_domain() );
} ); -
jamesduffell started the topic [Resolved] Password reset template in the forum How-to & Troubleshooting 9 years, 10 months ago
I’m trying to get WordPress to use the BuddyPress email template when users reset their passwords, any pointers on how best to achieve this?
Thanks,
^JD -
Henry Wright replied to the topic override bp_show_blog_signup_form() in the forum How-to & Troubleshooting 9 years, 10 months ago
Hi @socialc
The Template Hierarchy will let you override create.php. In your own version of that file you could use
custom_show_blog_signup_form()in place ofbp_show_blog_signup_form(). I’d copy everything frombp_show_blog_signup_form()to your custom function and edit what you need to. -
logicsystemsllc's profile was updated 9 years, 10 months ago
-
Henry Wright replied to the topic App in the forum Showcase 9 years, 10 months ago
I haven’t used either of those plugins so can’t really offer any thoughts. Sorry.
-
David Cavins replied to the topic [Resolved] Still getting a Fatal Error with BP Group Hierarchy plugin in the forum Third Party Plugins 9 years, 10 months ago
Hi there-
Yes, 2.6.1 (and 2.6.1.1) have a conflict with BP Group Hierarchy. The problem is caused by the addition of the autoloader check in
bp-loader.phpbecause BPGH instantiates its class before BP knows if the groups component is active or not. The short term fix is, unhappily, to changebp-loader.php. Comment out the line that readsreturn…[Read more] - Load More