Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 10,476 through 10,500 (of 69,210 total)
  • Author
    Search Results
  • #253323
    stefannita
    Participant

    Sorry for repost.

    “Unfortunately BP Profile Search cannot alter the order of results, that’s controlled by BuddyPress instead (Order By: Last Active / Newest Registered / Alphabetical). “

    #253306
    dcrowe
    Participant

    I am having the same issues. I can upload and set the crop marks but then when I click save I get “There was a problem cropping your profile photo.”

    I have updated buddypress and bbpress, made sure my file permissions on the avatar and uploads folder are set to 777

    No clue why this is happening.

    #253304
    Jot
    Participant

    Goodnight. Since the last update, buddypress not send emails validating new user accounts. I checked the plug smtp.wordpress and working properly. The problem occurs at the time of registration of a new user.

    #253294
    justarandomuser
    Participant

    OK AJAX is now working. I use now the $GLOBAL variable from WordPress.

    Just the new message, whoch is appended my AJAX, is not correctly dispayed. Will continue to find the problem.

    It looks like the AJAX response (new message) is appended right after <form …> and before the next <div ….>

    <form id="send-reply" action="<?php bp_messages_form_action(); ?>" method="post" class="standard-form">
                <div class="conv-textarea">
                  <?php //do_action( 'bp_before_message_reply_box' ); ?>
                  <textarea name="content" id="message_content" class="auto-height" placeholder=""></textarea>
                  <?php //do_action( 'bp_after_message_reply_box' ); ?>
                  <div class="conv-bottom">                
                    <?php //do_action( 'bp_after_message_reply_box' ); ?>
                    <div class="submit">
                      <input type="submit" name="send" value="<?php esc_attr_e( 'Send Reply', 'buddypress' ); ?>" id="send_reply_button"/>
                    </div>
                    <input type="hidden" id="thread_id" name="thread_id" value="<?php bp_the_thread_id(); ?>" />
                    <input type="hidden" id="messages_order" name="messages_order" value="<?php bp_thread_messages_order(); ?>" />
                    <?php wp_nonce_field( 'messages_send_message', 'send_message_nonce' ); ?>
                  </div>
                </div>
              </form>

    Very strange to put a message there.

    #253285

    In reply to: PHP 7.0 compatibility

    justarandomuser
    Participant

    Yes sir.
    Just found the problem:
    my import of my SQL file was a little bit failed. Everything was fine but BuddyPress was corrupted – I don’t know why! Fixed it!

    Now I can test PHP7. First opinion: it’s sensible faster on localhost.

    I’ll install PHP7 later on my Debian Server to test.

    #253283
    semperaye
    Participant

    There is this code posted by someone on this thread 2.5 years ago:

    https://buddypress.org/support/topic/hide-certain-admins-as-being-online/

    /* disable Recording Site Activity for Admins */
    add_action(“bp_loaded”,”bpdev_init_sm_mode”);
    function bpdev_init_sm_mode(){
    if(is_super_admin())
    remove_action(“wp_head”,”bp_core_record_activity”);//id SM is on, remove the record activity hook
    }
    /* ——————————————– */

    But not sure if that is custom css, or if that is something that needs to be placed in the bp-custom.php file? Also, that code appears to only block admin activity, not profile, and members list….

    Is there a way to do all of this via some custom CSS? That would obviously be the easiest way to solve this since there are no currently working plugins.

    #253282
    jameshh93
    Participant

    @fakrulislam thank you!! Coincidentally I was having trouble with this with twentysixteen and just creating a stylesheet in buddypress/css and now the cover image appears thanks to that code! YAY!!!!!!!!!!!!!!!!!!!!!!!

    #253280

    In reply to: PHP 7.0 compatibility

    justarandomuser
    Participant

    I just tested my whole Website with PHP7.
    I have 19 PlugIns activated. 18 are working fine – except BuddyPress.

    I really don’t know why but even simple functions like “messages_get_unread_count()” get an Fatal Error: Uncaught Error: Call to undefined function messages_get_unread_count().

    bp_get_messages_slug and many more gives me the same error.

    Can anyone help?

    #253271
    Henry Wright
    Moderator

    Do you mean like a deactivate option? That isn’t available right now in BuddyPress.

    #253267
    r0z
    Participant

    I solved this error without having to disable the SEO in BuddyPress pages, and without having to touch the core of the plugin.
    I’ll leave here (add in functions.php):

    
    function wpseo_fix_title_buddypress($title) {
        // Check if we are in a buddypress page 
        if (function_exists( 'buddypress') && buddypress()->displayed_user->id || buddypress()->current_component ) {
            $bp_title_parts = bp_modify_document_title_parts();
    
            // let's rebuild the title here
            $title = $bp_title_parts['title'] . ' ' . $title;
        }
        return $title;
    }
    add_filter( 'wpseo_title', 'wpseo_fix_title_buddypress');
    

    maybe this code or something similar would need to be implemented in Yoast SEO plugin… maybe.

    #253265
    Henry Wright
    Moderator

    I think this should be a question for the core team. You should post it on Trac:

    https://buddypress.trac.wordpress.org

    diverpt
    Participant

    Hi,
    I use wordpress version 4.5.2 and buddypress version 2.5.2
    I installed the Ultimate Membership Pro on my site to improve the registration of students, but the site does not recognize the slug.
    I put the slug on the registration page but it is always replaced by the original site.
    The Ultimate Membership Pro Support logged on my website and said it is a problem with BuddyPress that leaves not recognize the Ultimate Pro Membership form.

    I tested on another page and recording works perfectly.
    See the link below:

    TEstREg

    Can you help me solve this problem?

    Thanks,
    Miguel

    #253254
    Henry Wright
    Moderator
    #253252
    MD FAKRUL ISLAM
    Participant

    @mfalk75

    I faced the same issue when I copied the buddypress.css from buddypress/bp-templates/bp-legacy/css to mythemes/buddypress/css

    Here is the code below I used to get rid of this…

    function your_theme_cover_image_css( $settings = array() ) {
        /**
         * If you are using a child theme, use bp-child-css
         * as the theme handel
         */
        $theme_handle = 'bp-parent-css';
    
        $settings['theme_handle'] = $theme_handle;
    
        /**
         * Then you'll probably also need to use your own callback function
         * @see the previous snippet
         */
         $settings['callback'] = 'bp_legacy_theme_cover_image';
    
        return $settings;
    }
    add_filter( 'bp_before_xprofile_cover_image_settings_parse_args', 'your_theme_cover_image_css', 10, 1 );
    add_filter( 'bp_before_groups_cover_image_settings_parse_args', 'your_theme_cover_image_css', 10, 1 );

    Hope it helps..

    #253251

    In reply to: Private Member?

    shanebp
    Moderator

    I don’t believe bp_parse_args() was available when I wrote that codex page.

    But you should use it instead; it should solve your issue:
    https://codex.buddypress.org/developer/using-bp_parse_args-to-filter-buddypress-template-loops/

    #253245
    Henry Wright
    Moderator

    There are a few articles that could be useful to you. Check out:

    Customizing Labels, Messages, and URLs

    Customizable Slugs in BuddyPress

    #253233
    LavishDhand
    Participant

    I had no idea that creating a BuddyPress email template was necessary. Just created one and now it’s working.

    Thank you

    #253219
    andy60rm
    Participant
      Resolution today

    my personal steps
    1. restore latest wp backup with version 4.5.1
    2. complete remove of buddypress
    3. disactivation of the following plugins (i don’t know exactly the cure but bp works now)

    INACTIVE Cryout Serious Theme Settings 0.5.6
    INACTIVE Huge IT Slider 3.1.82
    INACTIVE mathtex latex equation editor 1.1.5
    INACTIVE Ultimate Tables 1.6.3
    INACTIVE WP-Polls 2.73
    INACTIVE WP-Pro-Quiz 0.37

    #253211

    In reply to: virtual kiss or wink

    danbp
    Participant
    #253181
    fidelleon
    Participant

    “Solution” told here works fine but requires modifying core:

    https://buddypress.org/support/topic/2-5-html-email-styling-not-working/

    The BP Registration Options plugin forces in some way to send the emails using content_plaintext instead of content_html:

    $must_use_wpmail = apply_filters( ‘bp_email_use_wp_mail’, $wp_html_emails || ! $is_default_wpmail );

    It gets set to true so:

    if ( $must_use_wpmail ) {

    […]
    $email->get( ‘content_plaintext’, ‘replace-tokens’ )

    If you visit the “Manage Signups” and send an email to the user (reminding to activate their accout), the mail is 100% HTML w/o touching anything…

    #253165
    peter-hamilton
    Participant

    This is a great chat plugin and very facebook-ish, although no video, but chat has multichat function etc.

    http://codecanyon.net/item/wordpress-buddypress-users-chat-plugin/10776067

    #253161

    In reply to: Birthday Notifications

    lucaram
    Participant

    Thanks Henry,

    Unfortunately I struggle to understand how to produce the code, I’m not a code expert like you guys.

    Here is what I have and how I would like to implement it for my friend’s birthday:
    bIRTHDAY nOTIFICATIONS

    I have found this that mentioned the “bp_notifications_add_notification()” function:

    BuddyPress: Adding Custom Notifications

    That is for notifications when someone comments on their blog post, but it is far too complex for me to modify for birthdays I’m afraid 🙁

    Any chance somebody could share the code?

    #253160
    shanebp
    Moderator

    I would like to give suggestions, if buddypress team should be given backend options like select content type (1)HTML email (2)Plain text
    because buddypress have not given any hook for changes content type text

    You can create an enhancement ticket here using the same login as you use for these forums.

    Henry Wright
    Moderator

    If you’re already using WordPress then BuddyPress might be a good option because of how tightly integrated the two are. BuddyPress is just a plugin so to get started you simply have to activate it from your WordPress dashboard.

    My advice would be to set up a test install and give BuddyPress a try. You’ll then get a feel for if it will meet your exact requirements. Lastly, if BuddyPress core doesn’t have the functionality you need, then you’ll find many plugins in the Plugin Directory written specifically for BuddyPress. Taking a quick look at your requirements, one that you may want to check out is BuddyPress Follow.

    #253151
    Bharat
    Participant

    Hello Guys

    I have found solutions for html email text
    there is some changes in bp_core files :
    You can change content type given below path:
    \wp-content\plugins\buddypress\bp-core\bp-core-functions.php line number 2962

    put content_html text instead content_plaintext:
    content_plaintext should be send plain text email and content_html should be

    send html email:
    $email->get( ‘content_plaintext’, ‘replace-tokens’ )

    $email->get( ‘content_html’, ‘replace-tokens’ )

    I would like to give suggestions, if buddypress team should be given backend options like select content type (1)HTML email (2)Plain text
    because buddypress have not given any hook for changes content type text

Viewing 25 results - 10,476 through 10,500 (of 69,210 total)
Skip to toolbar