-
David Cavins replied to the topic No cover image option in buddypress settings in the forum How-to & Troubleshooting 8 years, 9 months ago
Looking at the source code, both items make a call to the function
bp_is_active(). For profile cover images, the check is
if ( bp_is_active( 'xprofile', 'cover_image' ) ) {)For groups,
if ( bp_is_active( 'groups', 'cover_image' ) ) {}.In both cases, the default is true, so I’d guess that your theme or another plugin is filtering that value,…[Read more]
-
David Cavins replied to the topic Cannot add User to Group in the forum How-to & Troubleshooting 8 years, 9 months ago
The user will have to be active in order to be shown in the group. Try logging in as this other user to make that user active.
I’m assuming that you see the user listed in the Manage > Members tab on the group?
-
David Cavins replied to the topic Group header file problems in the forum How-to & Troubleshooting 9 years, 2 months ago
I think I finally understand what is going wrong here. If you pass a bad group object to
bp_group_has_moderators()or don’t pass a group object and the global$groups_template->groupisn’t set, this error can occur.If you’ve had this problem, can you please respond telling me what theme you’re using? Furthermore, look in your theme where
bp_group…[Read more] -
David Cavins replied to the topic Group header file problems in the forum How-to & Troubleshooting 9 years, 3 months ago
Hi @lawlyet
If you’re up for helping to root out this problem, please add this debugging info as mentioned above:
We’re closing in on the problem, I think. One more debug addition, this time to bp-core/bp-core-cache.php:
http://pastie.org/10965063#12-14Pastie is broken at the moment, but hopefully it’ll be back up soon.
Thanks for you h…[Read more]
-
David Cavins replied to the topic Log In and Registration in the forum Installing BuddyPress 9 years, 3 months ago
The log-in page is a WordPress page. There is a guide on how to customize it:
https://codex.wordpress.org/Customizing_the_Login_FormThe registration page is created by BuddyPress and can be modified in many ways. You’ll need to understand theme compatibility and overriding…[Read more]
-
David Cavins replied to the topic Email Template removing HTML tags in the forum How-to & Troubleshooting 9 years, 3 months ago
Mail is complicated.
BP provides unsubscribe functionality, so you maybe don’t need to do that anymore. BP Email sends html emails when possible.
You might try filtering your messages in other ways. Have you read the “customizing emails” how-to? it includes an example of overriding the BP template so that the BP content is sent in your custom…[Read more]
-
David Cavins replied to the topic activate problem in the forum How-to & Troubleshooting 9 years, 3 months ago
Have you set up your BuddyPress pages?
If “Activate” is not set up, then WP will redirect you to your site’s home page.
-
David Cavins replied to the topic Homepage not loading after Plugin Activation in the forum Installing BuddyPress 9 years, 3 months ago
I believe that there are conflicts between BP and Paid Memberships Pro. If you activate BP and deactivate Paid Memberships, does the page load?
What does your debug log say? https://codex.wordpress.org/Debugging_in_WordPress
-
David Cavins replied to the topic Pending Activation in the forum Installing BuddyPress 9 years, 5 months ago
@djpaul: Nope. I’ve added lots of
fwrite()statements to track behavior, but nothing in plugin form. Sorry. -
David Cavins replied to the topic Group header file problems in the forum How-to & Troubleshooting 9 years, 6 months ago
Hi @jmichaelp
No, we’ve not solved it, because most of us can’t recreate the issue. If you are comfortable doing some troubleshooting, please run the various
var_dumps and tracing code I’ve added further on up in this thread and let me know what you find. Or, grant me administrator access to your site via FTP for a short time when I’m able to dig…[Read more] -
David Cavins replied to the topic Group header file problems in the forum How-to & Troubleshooting 9 years, 8 months ago
OK, maybe I could have administrator access to your site temporarily (or FTP access, whichever is easier for you)? You can find me on the buddypress channel in Slack, or email me at d_cavins76 [at] yahoo [dot] com.
-
David Cavins replied to the topic Group header file problems in the forum How-to & Troubleshooting 9 years, 8 months ago
You can remove the other statements if you want. We know what they’re doing. 🙂
-
David Cavins replied to the topic Group header file problems in the forum How-to & Troubleshooting 9 years, 8 months ago
We’re closing in on the problem, I think. One more debug addition, this time to
bp-core/bp-core-cache.php:
http://pastie.org/10965063#12-14Thanks!
-
David Cavins replied to the topic Group header file problems in the forum How-to & Troubleshooting 9 years, 8 months ago
Thanks again for your help troubleshooting. Can you add a couple of debug statements to the function
prime_group_admins_mods_cache()in the same class? It looks like the cache itembp_group_modsis not being set properly; I’m trying to understand why that would be.Debug lines added here:
http://pastie.org/10965044#11,35Thanks!
-
David Cavins replied to the topic Group header file problems in the forum How-to & Troubleshooting 9 years, 8 months ago
@jeffwilliams-1 Not at all! If you’re feeling like chasing it down, give it a try. When your code change last time failed, it was probably because somewhere along the line, a
<was encoded for the web as & l t ; so make sure that the changes to the file look visually like<?php…Thanks!
-
David Cavins replied to the topic Group header file problems in the forum How-to & Troubleshooting 9 years, 8 months ago
Hi @jaumearagay & @JeffWillia.ms-
Thanks for posting the results of your testing. @jaumearagay, your results match what I expected. Can you try another test for me that checks the value after the foreach?
http://pastie.org/10964506Thanks for your patience as we figure this one out.
-David
-
David Cavins replied to the topic Group header file problems in the forum How-to & Troubleshooting 9 years, 8 months ago
HI @JeffWillia.ms-
Can you do the troubleshooting step requested above?
Thanks,
-David
-
David Cavins replied to the topic Group header file problems in the forum How-to & Troubleshooting 9 years, 8 months ago
Hi @jaumearagay–
Unhappily, I’m not able to reproduce your problem on my servers. Can you test something for me in your environment where we know the problem exists? I’d like to know what the value of
$group_modsis before it’s passed to theforeachinget_group_moderator_ids().I’ve added a
var_dump()in this snippet:…[Read more] -
David Cavins updated the Template Updates 2.7 page, on the BuddyPress Codex 9 years, 9 months ago
In BuddyPress 2.7 we introduce some new features that specifically require template adjustment.
These changes are of importance for theme developers who may have overloaded the templates to the themes directory […]
-
David Cavins replied to the topic Registration and activate page in the forum How-to & Troubleshooting 9 years, 10 months ago
Hi, you have to enable WP registration at Settings > General > Anyone Can Register:
http://www.wpbeginner.com/beginners-guide/how-to-allow-user-registration-on-your-wordpress-site/
- Load More
@dcavins
Active 2 weeks, 1 day ago