Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 10,426 through 10,450 (of 68,948 total)
  • Author
    Search Results
  • #252195
    Henry Wright
    Moderator

    You can still use global $bp; at the beginning of your functions to access the global’s data. But yes, buddypress() is a far better way. You should be able to update the Codex yourself? If that’s not the case, let me know ๐Ÿ™‚

    #252192
    Henry Wright
    Moderator

    so I guess BuddyPress is bypassing or overriding this filter

    If that were the case, you can increase the priority:

    add_filter('document_title_parts', 'custom_groups_title', 20);

    But I don’t think that’s the problem in this case. Maybe check if bp_is_group() and bp_current_action() are working as you expect them to be. var_dump( $some_value ); will be useful here.

    #252185
    danbp
    Participant

    Hi @xrossgg,

    which language do you use on your site and which server type (apache, nginx, iis,..)? Also can you tell exactly what you mean by BP names ?

    A priori your issue has nothing to do with BuddyPress, but with the way gettext is excuted or how device are handled (charset…) in your language.

    redokodesign
    Participant

    Hey all,

    A HUGE thank you to @djpaul and everyone else who helped to solve this problem for me.

    Paul asked me to install the following plugin:

    https://wordpress.org/plugins/bp-email-to-wp-mail-from-bridge/

    – This fixed the problem for me instantly. The site now has working notifications for Buddypress, BPpress and WordPress. Amazing! If you too are running WP-mail-SMTP and having problems do try this fix.

    The Buddypress community is always so helpful.

    Thanks again,

    T

    #252182
    Henry Wright
    Moderator

    The edit form is in edit.php. You will need to add that to the page but I don’t think it will be as easy as copying and pasting because the default form processing may depend on the current URL.

    #252180
    mfalk75
    Participant

    OK, so this is the code I have put into my child theme:

    // COVER IMAGES
    
    // Add css style for background cover images
    
    function bp_legacy_theme_cover_image_css( $settings = array() ) {
    
    $theme_handle = 'bp-child-css';
    
    $settings['theme_handle'] = $theme_handle;
    
    $settings['callback'] = 'bp_legacy_theme_cover_image';
    
    return $settings;
    
    }
    
    function bp_legacy_theme_cover_image( $params = array() ) {
    
    if ( empty( $params ) ) {
    
    return;
    
    }
    
    return '
    
    #buddypress #header-cover-image {
    
    height: ' . $params["height"] . 'px;
    
    background-image: url(' . $params['cover_image'] . ');
    
    }
    
    ';
    
    }
    
    add_filter( 'bp_before_xprofile_cover_image_settings_parse_args', 'bp_legacy_theme_cover_image_css', 10, 1 );
    
    add_filter( 'bp_before_groups_cover_image_settings_parse_args', 'bp_legacy_theme_cover_image_css', 10, 1 );

    I get this error: Fatal error: Cannot redeclare bp_legacy_theme_cover_image() (previously declared in /home3/xxx/public_html/mysite.com/wp-content/themes/valenti-child/functions.php:49) in /home3/xxx/public_html/mysite.com/wp-content/plugins/buddypress/bp-templates/bp-legacy/buddypress-functions.php on line 1928

    Could someone point me in the right direction,…this is driving me nuts!

    mfalk75
    Participant

    hmm, thanks, I don’t get it either. I am editing the file in my child theme at this location: mysite.com/buddypress/members/members-loop.php It’s definitely editing the website as if I delete this part then the last update from a member does not appear. Your code makes the status update appear but it just don’t limit it. I even tried changing 50 to 10 and still long updates. Thanks for your help. Not sure what to do now.

    #252173
    Paul Wong-Gibbs
    Keymaster

    We (the project, BuddyPress) recommend that you do not use W3TC’s Object Caching support. There is a bug in it that causes the password hash to be reset when a user is updated. This is a bug in W3TC and not BuddyPress, and we are not going to workaround the issue in BuddyPress just to support a bugged plugin.

    ma3ry
    Participant

    I am trying to integrate eMember Registration with BuddyPress Extended Profiles.

    I created a page at https://christiangays.com/edit-profile/ with shortcode [bp_profile_edit_url]
    I have also installed BP Profile Shortcodes plugin

    The page shows:

    Edit Profile
    https://christiangays.com/members/mary/edit

    What I want it to show is the actual Edit Page, not a link to the edit page.

    Can you tell me please how I accomplish this.
    Thank you.

    #252167

    Paid Plugin
    youngtechleads.com/buddypress-members-export
    youngtechleads.com/buddypress-members-import
    Hope these two plugins will help the community with minimum cost.

    Juljan.By
    Participant

    Got the same erorr.
    It’s pity. Why this plugin is so hard coded?
    Why I cannot see log files with errors or change environment to development/production?

    Wordpress v4.4.2 (single site)
    Buddypress v2.5.2

    shanebp
    Moderator

    It works here.
    You need to put it in a template overload of this file:
    buddypress\bp-templates\bp-legacy\buddypress\members\members-loop.php

    Replace the update code with this:
    <span class="update"><?php $args = array( 'length' => 50 ); bp_member_latest_update( $args ); ?></span>

    #252159
    nownesx
    Participant

    I have a good knowledge of php, but I’m not a super programmer. developing themes for wordpress. BuddyPress documentation for plugins is poor.
    Can you give me some guidance about? what are the files involved than post-form.php?

    #252153
    christopherwayne
    Participant

    I have the same problem: buddypress not send emails notifications to users. Some temporary solution while definitely solve?

    #252151
    Paul Wong-Gibbs
    Keymaster

    It’ll be BuddyPress in conjunction with something else. What theme are you using? What other plugins are active?

    ma3ry
    Participant

    As I said in my original post “I have tried it with all plugins deactivated and with twenty-fifteen theme.”

    However I just got another clue. I reinstalled BuddyPress and this time when I tried to upload an image I got the following different error.

    “Upload Failed! Error was: That photo is too big. Please upload one smaller than 200 B”

    200 bytes is pretty darned small. Why would this be?

    Does this info help at all?

    #252142
    justplaindoug
    Participant

    Buddy press is the source of the problem. When I deactivate it the error goes away. There is a lot of themes and plugins installed, and I have deactived everything except buddypress and get the error.

    Henry Wright
    Moderator

    Can you try ruling out your set up?

    Disable all plugins (aside from BuddyPress) and activate Twenty Fifteen. Then try uploading a profile pic. If that test works then we can safely say your server is working as it should be.

    #252137
    cmavrikas
    Participant

    Hello,

    this is something I am searching around for a long time myself too. By default, the most recent updates are in the top. Even if there is a recent comment for an old update, that update remains hidden under the top.

    What would be ideal is to have the updates sorted by the most recent date, either of the update’s itself or one of its comment’s date. And be displayed together as a group.

    There has been a proposal in the past, but it just displays the single comment on top, as an extra to the blog of the original update.
    https://buddypress.org/support/topic/blog-comments-not-appearing-in-activity-stream/

    ma3ry
    Participant

    I have tried it with images from 4kb to 12 kb – jpg, gif and png. Nothing works. However I can take a pic of myself and it uploads perfectly.

    I can upload to Media Library without any problems. The only issues seems to be uploading a BuddyPress profile pic.

    Could one of my files be corrupt? Should I change some files? I don’t know what else to try.

    Frank G.
    Participant

    Hi @djpaul .

    This was only a cosmetic decision, I prefer to send emails from an address of my choice.

    Great work BuddyPress team.
    Thanks,,,

    #252124
    Paul Wong-Gibbs
    Keymaster

    Just deactivate BuddyPress. It won’t break anything.

    Thanks for trying BuddyPress!

    #252123
    Paul Wong-Gibbs
    Keymaster

    I’ll continue to give this thought. If WordPress emails are sent without ANY plugin or customisation, I am not sure why BuddyPress emails aren’t being sent — we put a lot of work into the v2.5.2 release to try to fix this exactly situation/problem.

    Halo Diehard
    Participant

    Pretty sure your WordPress members have to post after BuddyPress has been installed, or they don’t show up as BuddyPress members ๐Ÿ™ I’m currently looking into this as well, to see if any updates have remedied this. It’s very confusing to my members when they click the BuddyPress members link and everyone isn’t there. Some of my members keep in contact even if it isn’t through my site. It’s really not a true integration with WordPress set up this way, so I hope it’s been updated.

    #252112
    Henry Wright
    Moderator

    Can you post some information about your install?

    • Active theme
    • Plugins activated
    • BuddyPress version
    • WordPress version

    Thanks!

Viewing 25 results - 10,426 through 10,450 (of 68,948 total)
Skip to toolbar