Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 4,776 through 4,800 (of 68,986 total)
  • Author
    Search Results
  • #305620
    gmbyrom
    Participant

    Hi Shane

    This is actually standard Buddypress functionality that I’m trying to change. See this Codex page:

    How To Join a Private Group


    Under the heading “Single group page”, Step 2 is the step I am trying to eliminate.

    Any help you can provide would be greatly appreciated.

    Thanks
    Greg.

    #305616
    happyday1
    Participant

    Hi
    Everytime I click on a link on my (buddypress integrated) site the page reloads from the top. E.g. when I’m going from the “activity” link to the profile edit and the profile photo link the pages reloads from the top.
    It is annoying – does anybody know how to make the loading of the different pages under the buddypress plugin more smooth?

    imborx
    Participant

    Hi, I would like to set a css class/style (in this case “font-weight: 400;”) to a $field_data in a buddypress function and I’m not really sure how can I do that. This is the code:

    function yzc_add_xprofile_field_data_after_username( $name ) {
        if ( bp_is_members_directory() ) {
    
            $field_data = xprofile_get_field_data( 'Age', bp_get_member_user_id() );
            return $name . ', ' . $field_data;
        }
        return $name;
    }
    add_filter( 'bp_member_name', 'yzc_add_xprofile_field_data_after_username', 10 );

    Image with code selected

    Thanks a lot!

    #305593
    Tunglin
    Participant

    I am new in buddypress.
    Wandering that can I replace the post comment system to what’s new form?
    Searching this function for many hours.

    allenhinson877
    Participant

    I have a site set up with WordPress and have BuddyPress installed on it. I am running the Reign Theme currently on my site. When I log in as a user to test the site I have an issue when uploading a new profile picture. I can select a photo and click upload but it will not show my profile picture when the crop option pops up. I can hit crop but not see anything and it will upload my profile picture. I need to change it where the user can see their photo when the crop option pops up. I have already deactivated all my plugins and used a basic theme and it did not fix my issue. If anyone can help me that would be great.

    Ricky Poon
    Participant

    I’m wondering if it is possible to add a textarea and subject line to a post that would send a private message to the poster using buddypress.

    I know its possible with Front End PM, but i hate their UX.

    #305582

    In reply to: Back to Previous Page

    Venutius
    Moderator

    I think you would need to raise a new feature request on Trac for this – https://buddypress.trac.wordpress.org/

    #305579
    elucinda
    Participant

    Yes thanks.. did that still no go.

    I set up WP Mail SMTP but it still isn’t sending the activation email.

    What is the specific code I need to add to tell Buddypress to use the WP Mail SMTP program to send emails? And where do I place this code?

    Thanks

    #305572
    grellgrau
    Participant

    Try rebuild E-Mails. Go to: Tools > BuddyPress

    Mind that this will overwrite your E-Mail customization.

    coolhunt
    Participant

    hey guys..

    my standard (most recent updated WP/BP install) doesnt have a link to the @username when @mention on the profile field of a user.

    you guys have any ideas how to enable @mention inside buddypress profile fields

    #305554
    douglaswebdesigns
    Participant

    @vapvarun Is there a way to password protect the registration page so that only those with a password can register? Our BuddyPress instance is invite only. Please advise

    #305552
    Venutius
    Moderator

    I’d try deactivating all plugins apart from BuddyPress and switching to a default theme, just for a few minutes and see if that fixes it.

    #305549
    polywebjeff
    Participant

    Switching to the default aarvark theme did indead remove the error messages. I’ve switched back to the child theme, and removed mycode from bp-custom. No results. My BP templates do not contain bp_nav, but I didn’t took the time to change the file versions in the top comments. I have those custom files:

    • aarvark-child/buddypress/members/single/myorganization/edit.php
    • /**
       * BuddyPress - Members Single Profile Edit
       *
       * @package BuddyPress
       * @subpackage bp-legacy
       * @version 3.0.0
       */
    • aarvark-child/buddypress/members/single/myorganization/profile-loop.php
    • /**
       * BuddyPress - Members Profile Loop
       *
       * @package BuddyPress
       * @subpackage bp-legacy
       * @version 3.0.0
       */
    • aarvark-child/buddypress/members/single/myorganization/profile-wp.php
    • /**
       * BuddyPress - Members Single Profile WP
       *
       * @package BuddyPress
       * @subpackage bp-legacy
       * @version 3.0.0
       */
    • aarvark-child/buddypress/members/single/profile/edit.php
    • /**
       * BuddyPress - Members Single Profile Edit
       *
       * @package BuddyPress
       * @subpackage bp-legacy
       * @version 3.0.0
       */
    • aarvark-child/buddypress/members/single/home.php
    • /**
       * BuddyPress - Members Home
       *
       * @package BuddyPress
       * @subpackage bp-legacy
       */
    • aarvark-child/buddypress/members/single/member-header.php
    • /**
       * BuddyPress - Users Header
       *
       * @package BuddyPress
       * @subpackage bp-legacy
       */
    • aarvark-child/buddypress/members/register.php
    • no version in comments

      In my functions.php file:

      // New buddypress nav items
      
      function add_bp_menu_items() {
          global $bp;
          //Remove unwanted nav items
          bp_core_remove_nav_item( 'activity' );
          bp_core_remove_nav_item( 'forums' );
          bp_core_remove_nav_item( 'user-media' );
      //    bp_core_remove_subnav_item( 'profile', 'public' );
          unset($bp->bp_options_nav['profile']['public']);
          unset($bp->bp_options_nav['profile']['change-avatar']);
          unset($bp->bp_options_nav['profile']['change-cover-image']);
          unset($bp->bp_options_nav['settings']['profile']);
          unset($bp->bp_options_nav['settings']['data']);
      
          $bp->bp_options_nav['profile']['name'] = 'My Profile';
      }
      add_action( 'bp_setup_nav', 'add_bp_menu_items', 15 );
      
      // Change Profile menu/tab order
      function rt_change_profile_tab_order() {
          global $bp;
      
          $bp->members->nav->edit_nav( array(
              'name' => 'My Profile',
          ), 'profile' );
      
          $bp->members->nav->edit_nav( array(
              'position' => 1,
          ), 'profile' );
      
          $bp->members->nav->edit_nav( array(
              'position' => 65,
          ), 'notifications' );
      }
      add_action( 'bp_init', 'rt_change_profile_tab_order', 999 );
    #305537
    Venutius
    Moderator

    What are you looking to upload? The only plugin that includes an upload feature that I’ aware of is https://wordpress.org/plugins/buddypress-xprofile-image-field/

    imborx
    Participant

    Hi,

    I would like to add some users to groups according to their profile fields selection. For example, in the users profile there’s a “city” field and the user select “london”, so that user should be added to the group called “london”. How can I do that?

    I checked a couple of plugins but are old or they don’t do what I need:

    BuddyPress Group-O-Matic


    https://wordpress.org/plugins/buddypress-auto-group-join/

    Thanks!

    #305530
    btees
    Participant

    Hi @venutius thanks for the reply, it looks like the issue was with my theme. It’s templates for buddypress seem to be riddled with issues!

    #305527

    In reply to: Notifications settings

    Bailey Metcalfe
    Participant

    Is the second file is overloaded? & Overloading & copying it over from:
    /bp-templates/bp-legacy/buddypress/

    It may be?

    #305518
    elucinda
    Participant

    Ok wow what a ride. so I went to do that and was met with white screens trying to login to WordPress. So I went through each plugin in my wp-content/plugin directory and renamed them to find the culprit. It was the buddy press plugin once renamed, the white screen went away.

    Once I try to reinstall buddy press, it gives me a white screen again, even when I had 2017 theme activated.

    Luckily some how by reactivating my theme Aardvark and then reinstalling buddy press I am not getting the white screen. but alas.. still no activation email.

    One thing I notice is why when I go to Emails then Customize, it goes to bring up the Buddypress options and then quickly disappears to be replaced by other list of Customizing elements to which that isn’t one of them?

    I caught a quick screenshot before it switched .. I suspect I need these options yes? Any idea why it disappears on me?

    I don’t have a url for the screenshot..only image.

    you could email support@idreamer.ca
    Thanks
    Lucinda

    #305512
    elucinda
    Participant

    Hi, I have set up the Aardvark Theme with Buddypress, and for some reason the activation email is not being sent. I have tried several times. Any idea what I need to do? Thanks.

    https://idreamer.ca

    #305510
    Debora1976
    Participant

    Oke, thanks.
    Could you tell me, what I need to change here than?

    <td class=”thread-from”>
    <?php bp_message_thread_avatar( array( ‘width’ => 25, ‘height’ => 25 ) ); ?>
    <span class=”to”><?php _e( ‘To:’, ‘buddypress’ ); ?></span> <?php bp_message_thread_to(); ?>

    <span class=”activity”><?php bp_message_thread_last_post_date(); ?></span>
    </td>

    #305505

    In reply to: Register Page

    Venutius
    Moderator

    Hi there, do you mean the register.php file in the bp-templates/your-template/buddypress/members ?

    You can overload that file https://codex.buddypress.org/themes/theme-compatibility-1-7/a-quick-look-at-1-7-theme-compatibility/#how-is-this-useful

    #305501

    In reply to: Notifications settings

    Debora1976
    Participant

    Hi,

    The form is not in settings:

    <?php

    /**

    * BuddyPress – Members Settings Notifications

    *

    * @package BuddyPress

    * @subpackage bp-legacy

    * @version 3.0.0

    */

    /** This action is documented in bp-templates/bp-legacy/buddypress/members/single/settings/profile.php */

    do_action( ‘bp_before_member_settings_template’ ); ?>

    <h2 class=”bp-screen-reader-text”><?php

    /* translators: accessibility text */

    _e( ‘Notification settings’, ‘buddypress’ );

    ?></h2>

    <form action=”<?php echo bp_displayed_user_domain() . bp_get_settings_slug() . ‘/notifications’; ?>” method=”post” class=”standard-form” id=”settings-form”>

    <p><?php _e( ‘Send an email notice when:’, ‘buddypress’ ); ?></p>

    <?php

    /**

    * Fires at the top of the member template notification settings form.

    *

    * @since 1.0.0

    */

    do_action( ‘bp_notification_settings’ ); ?>

    <?php

    /**

    * Fires before the display of the submit button for user notification saving.

    *

    * @since 1.5.0

    */

    do_action( ‘bp_members_notification_settings_before_submit’ ); ?>

    <div class=”submit”>

    <input type=”submit” name=”submit” value=”<?php esc_attr_e( ‘Save Changes’, ‘buddypress’ ); ?>” id=”submit” class=”auto” />

    </div>

    <?php

    /**

    * Fires after the display of the submit button for user notification saving.

    *

    * @since 1.5.0

    */

    do_action( ‘bp_members_notification_settings_after_submit’ ); ?>

    <?php wp_nonce_field(‘bp_settings_notifications’ ); ?>

    </form>

    <?php

    /** This action is documented in bp-templates/bp-legacy/buddypress/members/single/settings/profile.php */

    do_action( ‘bp_after_member_settings_template’ );

    #305496
    Venutius
    Moderator

    I’ve reported this as a bug – https://buddypress.trac.wordpress.org/ticket/8082

    #305491
    globalstd
    Participant

    Oh ok i thought this is the forum of that “buddypress” plugin

    #305490
    shanebp
    Moderator

    Those errors are not coming from the BuddyPress plugin.

    They are coming from the buddypress-notifications-manager plugin.
    For example:
    Warning: Cannot modify header information – headers already sent by (output started at /home/global74/public_html/cursos/wp-content/plugins/buddypress-notifications-manager/loader.php:77) in /home/global74/public_html/cursos/wp-includes/pluggable.php on line 920

    You should deactivate that plugin and contact the creators of that plugin with your questions.

Viewing 25 results - 4,776 through 4,800 (of 68,986 total)
Skip to toolbar