Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 4,801 through 4,825 (of 68,944 total)
  • Author
    Search Results
  • #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.

    bhattarai1995
    Participant

    Buddypress version 4.3.0, wordpress version 5.1.1
    site: https://meroaawaz.com/community/members/bhattarai1995/groups/

    the Create group funtcion given by buddypress is not available in my site, i have tried uninstalling and re installing buddypress as well as all the other plugins, also the admin settings are set such that users can be allowed to create groups.. please help me..

    #305456

    In reply to: Notifications settings

    shanebp
    Moderator

    If you are using the Legacy template pack, this is the file:
    buddypress\bp-templates\bp-legacy\buddypress\members\single\settings\notifications.php

    For the Nouveau pack, it is:
    buddypress\bp-templates\bp-nouveau\buddypress\members\single\settings\notifications.php

    Both files can be over-loaded.

    #305440
    stokim2012
    Participant

    Hello,
    I’ve changed codes on /buddpress/register.php
    How can I keep this buddypress register page when the plugin updates?
    Thank you!

    #305428
    shanebp
    Moderator

    Most. maybe all, of the do_action hooks you need are in this file: buddypress\bp-friends\bp-friends-functions.php

    #305383
    newtravels2020
    Participant

    I created a social network with BuddyPress. But my activity page is blank. I tried with twenty fifteen, it apears correctly. What should I do ?

    Please it’s urgent.

    #305382

    In reply to: Email Tokens

    shanebp
    Moderator

    From the codex…

    This will limit the BuddyPress message content to 50 words.
    Change 50 to whatever integer you want.

    function bp_email_content_length( $formatted_tokens, $tokens, $obj ) {
    	
      $formatted_tokens['usermessage'] = wp_trim_words( $formatted_tokens['usermessage'], 50, '...' );
    	
      return $formatted_tokens;
    	
    }
    add_filter( 'bp_email_set_tokens', 'bp_email_content_length', 10, 3 );
    #305378
    johanmc
    Participant

    But with buddypress can`t customize the content of the activity loop when new post is publish?

    #305373
    Venutius
    Moderator

    I’ve just added that restriction into my plugin https://wordpress.org/plugins/bp-messaging-control/, I’d welcome your feedback, but make it on the plugin forum, this ones only for BuddyPress.

    It’s in the Public Message Character Restrictions in Settings>>Messaging Control

    #305371

    In reply to: Email Tokens

    Venutius
    Moderator

    You should ask on the bbPress forums regarding limiting the topic size.

    For private messages and also Activity update size restrictions I’ve just added those restriction capabilities into my plugin https://wordpress.org/plugins/bp-messaging-control/, I’d welcome your feedback, but make it on the plugin forum, this ones only for BuddyPress.

    ahcj
    Participant

    I’m able to add translation rules that alter language used on BuddyPress pages. What I need to do however is alter language in the email message that a member gets as a private message from another member.

    Many strings in these email messages are available in buddypress.pot, but changes in my custom .mo file have no affect. Again, I do have changes in the very same custom .mo file that succeed in altering text that appears on BuddyPress web pages.

    Where do I begin to track down the problem? Should I be able to do this at all?

    #305366
    Venutius
    Moderator

    Yes that’s correct, BuddyPress just uses the WordPress Login, there’s quite a few alternatives.

    If it still does not work with BuddyPress deactivated then something’s blocking WordPress itself. One thing to check is if you have ever installed a cache, some of them leave files behind, it can be quite a job truly uninstalling them.

    #305365
    jfillmann
    Participant

    if I deactivate Buddypress, issue persists. I am totally lost here.
    the strange thing alse is that the log-in page is has the wordpress logo, is this correct?

    #305361
    Venutius
    Moderator

    Hi there, That should not be happening in groups, group activity should never contain users profile updates. The first thing to do is to deactivate all other plugins except BuddyPress and see if you still get that behaviour.

    Have you done any BuddyPress customisations? Template Overloads, code in your functions.php or bp-custom.php?

    pandraka
    Participant

    I am still having the same issue. I’ve disabled all the plugins except BuddyPress, bbpress, contact form, profile. I’ve also switched the theme to 2012. I’m still getting the same result. Members of hidden groups can see the hidden group, but admin’s can.

    Venutius
    Moderator

    For what it’s worth, from my own investigations this issue was caused by the list item for the group list entry for hidden groups having a class attached called hidden.

    Some plugins will use this class and try to set display: none;. BuddyPress has a Javascript method to undo this just in case you have such a plugin.

    However in my case the plugin was also setting visibility: hidden; for the class hidden and it was this that was preventing the groups from being displayed.

    #305337
    Venutius
    Moderator

    That’s a shame, last time I came across passwords issue like this it was caused by a caching plugin.

    What about if you deactivate BuddyPress, do the passwords work then?

    #305332
    Venutius
    Moderator

    Hi there,

    1. By default BP is an open site – members page and any others will be publicly available. There’s a bunch of plugins that change this google buddypress privacy etc to find them.

    2. Is this due to the member password not being recognised?

    3. and 2. sound like you probably have a plugin conflict. try deactivating all other plugins and testing. It’s also worth switching to a default theme such as 2017 for this test.

    4. Users are only listed in the members list after they have logged in at least once.

Viewing 25 results - 4,801 through 4,825 (of 68,944 total)
Skip to toolbar