Skip to:
Content
Pages
Categories
Search
Top
Bottom

  • About
  • News
  • Codex
  • Develop
  • Make
  • Forums
  • Download

BuddyPress.org


  • All Members
  • RSS
  • Profile picture of Slava Abakumov

    Slava Abakumov replied to the topic Get "Edit Cover Image" link outside of Buddypress page in the forum How-to & Troubleshooting 9 years, 10 months ago

    The reason that it doesn’t work – it requires to be placed on a user BuddyPress profile page.
    It uses bp_displayed_user_domain() function to generate the link, as there is no user on your custom page (it’s not BuddyPress or even WordPress) – bp_get_members_component_link function produces nothing.

    There is no easy fix. You will need to create…[Read more]

  • Profile picture of Slava Abakumov

    Slava Abakumov replied to the topic Private Messaging AJAX in the forum Miscellaneous 9 years, 10 months ago

    So far BuddyPress doesn’t support this out of the box and I don’t know such plugins.
    But this is a good feature request, and I’m pretty sure that this will implemented eventually. Because we already have similar thing on Activity directory page.

    Here is the ticket that I created with this request.

    PS Update to the latest BuddyPress 2.6.1.1 🙂

  • Profile picture of Slava Abakumov

    Slava Abakumov replied to the topic [Resolved] Looking for free Themes that allow change theme credits in footer in the forum Installing BuddyPress 9 years, 10 months ago

    I personally use Hueman theme on my site, and it has an ability to redefine or clean the footer credits: http://take.ms/8y2CP
    And it looks good with BuddyPress, and has interesting settings for WordPress itself.

  • Profile picture of @mercime

    @mercime updated the Theme Compatibility page, on the BuddyPress Codex 9 years, 10 months ago

    The pages under this section provide an overview of the BuddyPress theme compatibility layer first introduced in version 1.7.

    An overview of theme compatibility is provided as a primer followed by a detailed […]

  • Profile picture of Paul Wong-Gibbs

    Paul Wong-Gibbs replied to the topic bp_activity_add strips html in the forum How-to & Troubleshooting 9 years, 10 months ago

    The content property is run through KSES and the permitted HTML tags are set here: https://buddypress.trac.wordpress.org/browser/trunk/src/bp-activity/bp-activity-filters.php#L206

    You COULD unhook this function from the filter (see: lines 16-25, same file) but I would not recommend it, because other people will use this to inject malicious…[Read more]

  • Profile picture of Schweizer Solutions GmbH

    Schweizer Solutions GmbH started the topic bp_activity_add strips html in the forum How-to & Troubleshooting 9 years, 10 months ago

    Hello,

    I have a problem with the bp_activity_add function. I try to save a activity with HTML code as content. But everytime I check the result on the stream, the HTML code is stripped.

    The code I use to write to the stream:

    $bp_activity_id = bp_activity_add(array (
    'user_id' => 99,
    'action' => '<a href="http://example.org/members/swiss/"…
    [Read more]

  • Profile picture of Henry Wright

    Henry Wright replied to the topic conflict buddyPress with woocommerce in the forum How-to & Troubleshooting 9 years, 10 months ago

    settings will be lost if i change theme to twenty fifteen ??

    In theory your settings shouldn’t be lost, but in reality they could well be lost depending on so many things. Always make a backup of your files and database before testing. Ideally don’t test in production; instead, set up a testing install.

  • Profile picture of Henry Wright

    Henry Wright replied to the topic conflict buddyPress with woocommerce in the forum How-to & Troubleshooting 9 years, 10 months ago

    Hi,

    Does the problem happen if you deactivate those plugins and revert to the Twenty Fifteen theme?

  • Profile picture of Henry Wright

    Henry Wright replied to the topic [Resolved] If statement to only use certain bit of code on site activity feed? in the forum How-to & Troubleshooting 9 years, 10 months ago

    if ( bp_is_activity_directory() ) {
    // This is the activity dir.
    } else {
    // This isn't the activity dir.
    }

    That should be what you need.

  • Profile picture of Henry Wright

    Henry Wright replied to the topic conflict buddyPress with woocommerce in the forum How-to & Troubleshooting 9 years, 10 months ago

    What theme are you using? Can you also list the plugins you have active?

  • Profile picture of Henry Wright

    Henry Wright replied to the topic wp_insert_post posting duplicates in function in the forum How-to & Troubleshooting 9 years, 10 months ago

    $post_ID = wp_insert_post($new_post1);
    wp_insert_post( $new_post1 );

    You’ve used the function twice.

  • Profile picture of Henry Wright

    Henry Wright replied to the topic Action/Filter After activity is created? in the forum How-to & Troubleshooting 9 years, 10 months ago

    Glad you got this sorted 🙂

  • Profile picture of David Cavins

    David Cavins replied to the topic Help me sort out my BuddyPress install in the forum How-to & Troubleshooting 9 years, 10 months ago

    To add your own create group button output function, unhook the current ones:

    remove_action( 'bp_groups_directory_group_filter', 'bp_legacy_theme_group_create_nav', 999 );
    remove_action( 'bp_groups_directory_group_filter', 'bp_group_backcompat_create_nav_item', 1000 );

    and add your own to bp-custom.php:
    add_action(…[Read more]

  • Profile picture of David Cavins

    David Cavins replied to the topic Link to User's Group's Forums in the forum How-to & Troubleshooting 9 years, 10 months ago

    Menus aren’t very php-friendly, usually, but you could do something like this:


    <?php
    if ( groups_is_user_member( bp_loggedin_user_id(), $group_id_of_group_A ) ) {
    $group = groups_get_group( array( 'group_id' => $group_id_of_group_A ) );
    ?>
    <li><a href="<?php echo bp_get_group_permalink( $group ) . 'forum/'; ?>"><?php bp_group_name( $group )…
    [Read more]

  • Profile picture of David Cavins

    David Cavins replied to the topic Confirmation Email in the forum Requests & Feedback 9 years, 10 months ago

    I’m not sure what behavior you’re aiming for, but this snippet will disable the confirmation email and log the user in automatically upon successful registration.

    <?php
    add_action( 'bp_core_signup_user', array( $this, 'disable_validation_of_new_users' ) );
    add_filter( 'bp_registration_needs_activation', '__return_false' );
    add_filter(…
    [Read more]

  • Profile picture of Infinity Group US

    Infinity Group US's profile was updated 9 years, 10 months ago

    Infinity Group US

    @infinitygroupus

    View Profile
  • Profile picture of End of Lease Cleaning Melbourne

    End of Lease Cleaning Melbourne's profile was updated 9 years, 10 months ago

    End of Lease Cleaning Melbourne

    @truecleaning

    View Profile
  • Profile picture of dmrise

    dmrise's profile was updated 9 years, 10 months ago

    dmrise

    @dmrise

    View Profile
  • Profile picture of Paul Wong-Gibbs

    Paul Gibbs updated the Version 2.5.0 page, on the BuddyPress Codex 9 years, 10 months ago

    Version 2.5.0 is a major BuddyPress feature release.

    For Version 2.5.0, the database version (_bp_db_version in wp_options) was 10469, and the Trac revision was 10625. Read the full ticket log […]

  • Profile picture of Boone Gorges

    Boone Gorges updated the Version 2.5.3 page, on the BuddyPress Codex 9 years, 10 months ago

    Version 2.5.3 is a BuddyPress maintenance and security release.

    For Version 2.5.3, the database version (bp_db_version in wp_options) was 10469, and the Trac revision was r10802. Read the full ticket log […]

  • Load More

WordPress.org bbPress.org BuddyPress.org Matt Blog RSS

GPL Contact Us Privacy Terms of Service X

Skip to toolbar
    • WordPress.org
      • About WordPress
      • Documentation
      • Support Forums
      • Feedback
      • Developer Trac
      • Developer Blog
    • bbPress.org
      • About bbPress
      • Documentation
      • Support Forums
      • Feedback
      • Developer Trac
      • Developer Blog
    • BuddyPress.org
      • About BuddyPress
      • Documentation
      • Support Forums
      • Feedback
      • Developer Trac
      • Developer Blog
  • Log in
  • Anonymous
    • AnonymousNot Logged In
    • Register
    • Log In