Forum Replies Created
-
Hi,
Please list the steps you did in order to create the group message so we can try and duplicate.
eg. I navigated to the “Messages > Compose” and started to enter usernames in the “Send To” box, etc.
Sorry about that! Forgot the other hook.
Try this:
https://gist.github.com/r-a-y/5578432Paste in your /wp-content/plugins/bp-custom.php file
Navigate to “Plugins”.
Check to see if bbPress is enabled. Then, go to “Tools > Forums”.
The hook changed.
Use this instead:
remove_action( 'bp_init', 'bp_core_wpsignup_redirect' );Thanks for the report; sounds like a bug.
I’ve added a ticket about this here:
https://buddypress.trac.wordpress.org/ticket/5000If you disabled search engines from indexing your site (under “Settings > Reading” in the WP dashboard), then bbPress will not add any activity entries to the site.
Here’s a ticket I posted on the bbPress site about this:
https://bbpress.trac.wordpress.org/ticket/2151To override this behavior, add the following snippet to your theme’s functions.php:
add_filter( 'bbp_is_site_public', '__return_true' );Thanks for the bug report, Peter.
I have confirmed your issue and have added a ticket here:
https://buddypress.trac.wordpress.org/ticket/4999The ticket has a patch that will add back the “Forums” tab so you can configure the old legacy forums.
Moving forward, the legacy forums will not be the preferred option and you should look to use the bbPress plugin.
Check out this codex article for more info:
http://codex.buddypress.org/user/setting-up-a-new-installation/installing-group-and-sitewide-forums/using-bbpress-2-2-with-buddypress/@fanoop – Try reading this thread for more details and see if that fixes your problem:
http://buddypress.org/support/topic/v1-7-no-avatars/Got a link that we can try to register at?
Did you try sending a test email in the SMTP plugin to ensure email is working?
@mcmook – Login to the WP admin dashboard.
Navigate to “Settings > Discussion” and under “Avatar Display”, check “Show Avatars” and save.
Do the avatars reappear?
@twistyfarmy – To disable notices, on your profile, navigate to “Messages > Notices” and disable them that way.
BP 1.7 introduced universal theme compatibility, but it appears your theme already has BP support, but did not tell BP this. This is a possible reason why you see the sitewide notice at the top.
Follow the recommendation in this article:
https://bpdevel.wordpress.com/2013/02/25/bp-theme-authors-make-sure-your-theme-registers-buddypress-support/Sorry to hear that you’re experiencing problems, Famous.
It’s working for me.
This is what I have in `wp-content/themes/twentytwelve/buddypress/buddypress.php` to remove the sidebar on profile pages, but have it show up on all other pages:
This will remove the sidebar on profile pages, but you’ll still need to adjust the CSS so the content is full-width.
Thanks for replying, Marcio.
Pinging @djpaul so he is aware of this as he’s the de-facto translation wrangler!
@marcio-batista – Which translation is causing this problem?
It’s possible that a plugin could be interfering with the activity stream.
Try disabling all BP-related or any caching plugins and see if the problem still occurs.
`no-ajax` tells BP that:
- we want to use pagination instead; or:
- we shouldn’t use AJAX for this page because we haven’t implemented it yet (unfortunately).
What is in your `register.php` file?
Can you also check your server’s error log to see what the problem is? You can also turn `WP_DEBUG` temporarily on so you can view what the problem is:
You’re most likely using a plugin for this.
Check your plugins list and see if anything is related to BP registration. Also check to see if you added any BP snippets in your wp-content/plugins/bp-custom.php file or your theme’s functions.php file.
Sounds like you’re using a plugin for the login popup.
If you disable the login popup plugin, does this problem occur? If it does, try asking the plugin author about this.
hnla is absolutely correct.
You can place `buddypress.php` in the `buddypress` subdirectory.
You can treat `buddypress.php` like any other template.
So what you want to do is do a conditional check to see if you’re on a profile page.
Since you only want to show the sidebar on non-member pages, you could use the following code snippet:
`<?php if ( ! bp_is_user() ) { get_sidebar(); } ) ?>`
This snippet should replace the `get_sidebar()` line in your `buddypress.php` template.
Is your theme a child theme of bp-default?
If not, try copying `/plugins/buddypress/bp-templates/bp-legacy/buddypress/members/register.php` to your theme.
Make sure the directory structure stays the same.
So you should copy the template to:
`wp-content/themes/YOUR-THEME/buddypress/members/register.php`
Then open `register.php` in your editor and make your changes.
See if that works.
A quick Google search for your 324 error came up with this:
http://www.roezer.com/fixing-chrome-bug-error-324-neterr_empty_response/Appears to be a Chrome-related bug. Try the solution in that blog article and see what happens.
Also try using another browser and see if that error occurs.
What theme are you using for the parent?
If it is not bp-default, `buddypress.php` should reside at `wp-content/themes/child-theme/`. Not in a subdirectory of your theme.