Skip to:
Content
Pages
Categories
Search
Top
Bottom

Forum Replies Created

Viewing 25 replies - 1 through 25 (of 3,386 total)
  • Avatar of r-a-y
    r-a-y
    Moderator

    @r-a-y

    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.

    Avatar of r-a-y
    r-a-y
    Moderator

    @r-a-y

    Sorry about that! Forgot the other hook.

    Try this:
    https://gist.github.com/r-a-y/5578432

    Paste in your /wp-content/plugins/bp-custom.php file

    Avatar of r-a-y
    r-a-y
    Moderator

    @r-a-y

    Navigate to “Plugins”.

    Check to see if bbPress is enabled. Then, go to “Tools > Forums”.

    Avatar of r-a-y
    r-a-y
    Moderator

    @r-a-y

    The hook changed.

    Use this instead:
    remove_action( 'bp_init', 'bp_core_wpsignup_redirect' );

    Avatar of r-a-y
    r-a-y
    Moderator

    @r-a-y

    Thanks for the report; sounds like a bug.

    I’ve added a ticket about this here:
    https://buddypress.trac.wordpress.org/ticket/5000

    Avatar of r-a-y
    r-a-y
    Moderator

    @r-a-y

    If 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/2151

    To override this behavior, add the following snippet to your theme’s functions.php:
    add_filter( 'bbp_is_site_public', '__return_true' );

    Avatar of r-a-y
    r-a-y
    Moderator

    @r-a-y

    Thanks for the bug report, Peter.

    I have confirmed your issue and have added a ticket here:
    https://buddypress.trac.wordpress.org/ticket/4999

    The 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/

    Avatar of r-a-y
    r-a-y
    Moderator

    @r-a-y

    @fanoop – Try reading this thread for more details and see if that fixes your problem:
    http://buddypress.org/support/topic/v1-7-no-avatars/

    Avatar of r-a-y
    r-a-y
    Moderator

    @r-a-y

    Got a link that we can try to register at?

    Avatar of r-a-y
    r-a-y
    Moderator

    @r-a-y

    Did you try sending a test email in the SMTP plugin to ensure email is working?

    Avatar of r-a-y
    r-a-y
    Moderator

    @r-a-y

    @mcmook – Login to the WP admin dashboard.

    Navigate to “Settings > Discussion” and under “Avatar Display”, check “Show Avatars” and save.

    Do the avatars reappear?

    Avatar of r-a-y
    r-a-y
    Moderator

    @r-a-y

    @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/

    Avatar of r-a-y
    r-a-y
    Moderator

    @r-a-y

    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:

    http://pastebin.com/NyTN9pkj

    This will remove the sidebar on profile pages, but you’ll still need to adjust the CSS so the content is full-width.

    Avatar of r-a-y
    r-a-y
    Moderator

    @r-a-y

    Thanks for replying, Marcio.

    Pinging @djpaul so he is aware of this as he’s the de-facto translation wrangler!

    Avatar of r-a-y
    r-a-y
    Moderator

    @r-a-y

    @marcio-batista – Which translation is causing this problem?

    Avatar of r-a-y
    r-a-y
    Moderator

    @r-a-y

    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.

    Avatar of r-a-y
    r-a-y
    Moderator

    @r-a-y

    `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).
    Avatar of r-a-y
    r-a-y
    Moderator

    @r-a-y

    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:

    https://codex.wordpress.org/Editing_wp-config.php#Debug

    Avatar of r-a-y
    r-a-y
    Moderator

    @r-a-y

    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.

    Avatar of r-a-y
    r-a-y
    Moderator

    @r-a-y

    @martyn_ @valuser – BP Follow was just updated today and should fix the DB issue.  Let me know if it doesn’t.

    Avatar of r-a-y
    r-a-y
    Moderator

    @r-a-y

    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.

    Avatar of r-a-y
    r-a-y
    Moderator

    @r-a-y

    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.

    Avatar of r-a-y
    r-a-y
    Moderator

    @r-a-y

    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.

    Avatar of r-a-y
    r-a-y
    Moderator

    @r-a-y

    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.

    Avatar of r-a-y
    r-a-y
    Moderator

    @r-a-y

    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.

Viewing 25 replies - 1 through 25 (of 3,386 total)