Skip to:
Content
Pages
Categories
Search
Top
Bottom

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

BuddyPress.org


  • All Members
  • RSS
  • Profile picture of Varun Dubey

    Varun Dubey replied to the topic Non admin users cannot comment on post after updating to buddypress 3.0 in the forum How-to & Troubleshooting 7 years, 11 months ago

    @tmigot Please check once https://buddypress.org/support/topic/comment-button-and-reply-not-showing/?bbp_reply_to=273369&_wpnonce=62e75c8853#new-post

  • Profile picture of Varun Dubey

    Varun Dubey replied to the topic version 3.0 problems in the forum How-to & Troubleshooting 7 years, 11 months ago

    @geertbaven check following thread once

    Groups and forum issue

  • Profile picture of Varun Dubey

    Varun Dubey replied to the topic How to activate registration automatically without having to activate? in the forum Installing BuddyPress 7 years, 11 months ago

    You can try https://buddydev.com/plugins/bp-autologin-on-activation/

  • Profile picture of Varun Dubey

    Varun Dubey replied to the topic Create edit profile form or page in the forum How-to & Troubleshooting 7 years, 11 months ago

    You can check this https://wordpress.org/plugins/better-bp-registration/

  • Profile picture of Varun Dubey

    Varun Dubey replied to the topic OneSignal? in the forum Creating & Extending 7 years, 11 months ago

    @keytastic BP does not use custom post type.

  • Profile picture of Varun Dubey

    Varun Dubey replied to the topic After updating buddypress to 3.0.0 one of Xprofile field missing. in the forum Installing BuddyPress 7 years, 11 months ago

    @denniscabasal You can check following fix
    https://wordpress.org/support/topic/warning-breaks-with-bp-3-0/

  • Profile picture of Varun Dubey

    Varun Dubey replied to the topic User registration fails when multiple options selected in BuddyPress 3.0.0 in the forum Installing BuddyPress 7 years, 11 months ago

    Hi @filehippofree,

    As a Quick fix, You can replace line 91 at following path
    buddypress/bp-members/screens/register.php

    if ( isset( $_POST[ 'field_' . $field_id ] ) ) {
    $_POST[ 'field_' . $field_id ] = trim( $_POST[ 'field_' . $field_id ] );
    }

    with

    if ( isset( $_POST[ 'field_' . $field_id ] ) && !is_array( $_POST[ 'field_' .…[Read more]

  • Profile picture of Varun Dubey

    Varun Dubey replied to the topic Buddypress activity plus pludin issues in the forum How-to & Troubleshooting 7 years, 11 months ago

    @shahriar83 what exact issue are your getting on them?

  • Profile picture of Varun Dubey

    Varun Dubey replied to the topic Buddypress on local server (using MAMP) MAC in the forum How-to & Troubleshooting 7 years, 11 months ago

    yes BP works fine at localhost, I was using Mamp Pro earlier, nowadays using Local by Flywheel

  • Profile picture of Nahum

    Nahum replied to the topic bp-nouveau vs bp-legacy in the forum How-to & Troubleshooting 7 years, 11 months ago

    @djpaul thanks for the feedback. I’d say then that having a dropdown template pack option in the options page gives the impression that we can switch between the 2 as long as a theme supports both. In fact if I start working with BP + Twenty Seventeen or underscores, I need to stick with whichever pack i choose from the beginning if I make…[Read more]

  • Profile picture of Paul Wong-Gibbs

    Paul Wong-Gibbs replied to the topic bp-nouveau vs bp-legacy in the forum How-to & Troubleshooting 7 years, 11 months ago

    Imagine a BuddyPress Template Pack as something analogous to a WordPress theme. You can’t have a child theme compatible with multiple parent themes.

    And you can’t have a template pack compatible with multiple themes. I don’t think there is anything in the template hierarchy – like the named folders that you suggest – that would let you do this.…[Read more]

  • Profile picture of Nahum

    Nahum replied to the topic bp-nouveau vs bp-legacy in the forum How-to & Troubleshooting 7 years, 11 months ago

    @djpaul but lets say we want the THEME to remain compatible with both? would it be possible to switch between the 2 template packs for a theme having a the override/buddypress folder in order to modify bp templates and still have the theme stay compatible with both packs and my modifications in each?

    I can look for custom functions for each pack…[Read more]

  • Profile picture of Dr md shahriar kabir

    Dr md shahriar kabir replied to the topic Buddypress activity plus pludin issues in the forum How-to & Troubleshooting 7 years, 11 months ago

    But cant work with in activity post box of any group. what can I do? @vapvarun

  • Profile picture of Dr md shahriar kabir

    Dr md shahriar kabir replied to the topic Buddypress activity plus pludin issues in the forum How-to & Troubleshooting 7 years, 11 months ago

    thanks @vapvarun, after deactivate of buddypress activity reaction plugin. its work. Buddypress activity plus work propery. thanks a lot.

  • Profile picture of O To Viet Nam

    O To Viet Nam's profile was updated 7 years, 11 months ago

    O To Viet Nam

    @otovietnam

    View Profile
  • Profile picture of Archie Harvey

    Archie Harvey's profile was updated 7 years, 11 months ago

    Archie Harvey

    @archieharvey

    View Profile
  • Profile picture of Varun Dubey

    Varun Dubey replied to the topic wordpress top bar in the forum Installing BuddyPress 7 years, 11 months ago

    @mechwiy You can add a new class to the body based on role
    Added following codes inside child theme functions.php or using snippet plugin

    add_filter( 'body_class','adminbar_body_classes' );
    function adminbar_body_classes( $classes ) {

    if ( !current_user_can( 'level_10' ) ) {
    $classes[] = 'no-adminbar';
    }

    return $classes;…[Read more]

  • Profile picture of Varun Dubey

    Varun Dubey replied to the topic registration in the forum Installing BuddyPress 7 years, 11 months ago

    @omshankar You can try https://wordpress.org/plugins/lock-my-bp/ plugin to keep your site for members only and it will also add login and register links locked pages

  • Profile picture of Varun Dubey

    Varun Dubey replied to the topic hidden group not showing in my-profile>groups in the forum Requests & Feedback 7 years, 11 months ago

    Hi @onions2578

    By Default Hidden group will not be listed in the group’s directory or search results but it will be visible inside Members’s Group Memberships Tab
    https://drive.google.com/a/wbcomdesigns.com/file/d/1wJgoNI8egfOtoje3QvwgF2jGVfQB4Kb0/view?usp=drivesdk

  • Profile picture of Varun Dubey

    Varun Dubey replied to the topic Problems with the mandatory checkboxes field in registration in the forum How-to & Troubleshooting 7 years, 11 months ago

    Hi @blenderitalia you can check following ticket https://buddypress.trac.wordpress.org/ticket/7845#ticket

  • 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