Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 10,776 through 10,800 (of 69,119 total)
  • Author
    Search Results
  • #251308

    In reply to: what widget ?

    Paul Wong-Gibbs
    Keymaster

    It’s hardcoded. If you know how to customise a theme and write PHP, you can see the implemetnation: https://meta.trac.wordpress.org/browser/sites/trunk/buddypress.org/public_html/wp-content/themes/bb-base/functions.php#L355

    bbPress does have shortcodes, I’d suggest doing that instead. I don’t know what the shortcode is, I’d suggest searching on bbpress.org.

    #251307
    Paul Wong-Gibbs
    Keymaster

    Right now, you can’t. It’s a mandatory and required field, and very much hardcoded throughout BuddyPress.

    You *might* be able to not show the form if you replace the sign-up process with a Gravity Form (I think that’s it — one of the form plugins). I know @dimensionmedia has done this; I’m not sure he regularly reads these forums, but if he does, hopefully he’ll clarify if I’ve remembered correctly.

    I suspect even if that is an option, you’ll still need to programatically set the name field to something.

    #251302
    lanvalencia
    Participant

    There is a fault in buddypress and is the email that sends “[{{{site.name}}}]}} {{friend.name accepted your friendship request” and it not send me on my webpage fault and has also failed a new webpage that i opened, to see if they can fix and then update it. Thank you.

    pattz2016
    Participant

    Where exactly do i insert the code in buddypress/bp-forums/bp-forums-functions.php

    Below which comment?

    Many thanks.

    #251286
    Oscar Estepa
    Participant

    No particular reason, Buddypress 2.4.3 is using ‘bp_actions’ hook to add its actions instead of ‘wp’ and according to WordPress you need to use the exact same hook with the exact same priority in order to remove a previously inserted action, i.e., now BuddyPress is adding its functions as:

    add_action('bp_actions', 'bp_activity_action_sitewide_feed');

    See wp-content/plugins/buddypress/bp-activity/bp-activity-actions.php (L530).

    Therefore, they need to be removed using the exact same syntax:

    remove_action('bp_actions', 'bp_activity_action_sitewide_feed');

    #251281
    pedrohgl18
    Participant

    sorry for my dumb questions.
    my cover imagens aren’t working 🙁 . i tried update but dont change the image.

    let me explain, i’m using a wlms theme and not a buddypress theme
    this is what i did, first i try tu edit the files functions and cover-image-header from this folder
    /public_html/wp-content/plugins/buddypress/bp-themes/bp-default
    not work this way.

    So finally i WIN !! thanks for u ! hahaha
    this is the folder u have to edit ( for future questions by another users )
    i edit insite the child theme
    /public_html/wp-content/themes/wplms_modern functions.php
    and
    /public_html/wp-content/themes/wplms_modern/members/single member-header.php

    #251279
    @mcuk
    Participant

    So you are using cover images but they aren’t working? Or do you just mean the button isn’t appearing?

    Since you are using cover images the second code segment (number 2 above) needs to be placed in cover-image-header.php . It won’t appear if you put it in member-header.php because that is for profiles when you haven’t activated the use of cover images.

    That’s correct it won’t be in your child theme unless you’ve already put it there to make modifications. So it sounds like you need to copy the cover-image-header.php into your child theme following the same file structure. Something like:

    mychildtheme>buddypress>members>single

    (it goes in the single folder).

    Hopefully you’ll see the button now

    #251247
    lanvalencia
    Participant

    I spoke with different companies and they tell me that is a problem of Buddypress, maybe you need repair the problem.

    marcus540
    Participant

    I have the exact same issue, it’s the multi-select ‘checkbox’ fields that display (0 selected) instead of the descriptive placeholder text, that tells users what they should be selecting.

    I’m also using the Kleo theme however the Kleo support says it has nothing to do with the responsiveness of their theme. Which I’m inclined to believe, since changing the theme results in the same problem, like Mickey mentioned. So it must be happening somewhere in the Buddypress or BP-search form code. Can we get any help with this? There was one other topic posted 10 months ago, with the same issue and no information was received there either?

    #251231
    richdal
    Participant

    Thanks! I was able to copy that to my child theme

    /wp-content/themes/genbu-child/buddypress/members/single/profile/edit.php

    and can do some basic edits. Not familliar with making these types of changes but how would I change up some of the form field information. As an example I wanted to add some description text next to the 3 date fields for the Birth Date. If looked like those were getting generated here…

    
    <?php while ( bp_profile_fields() ) : bp_the_profile_field(); ?>
               <div<?php bp_field_css_class( 'editfield' ); ?>>
    
               <?php
                $field_type = bp_xprofile_create_field_type( bp_get_the_profile_field_type() );
                $field_type->edit_field_html();
    

    but not sure how to change those up.

    #251229
    shanebp
    Moderator

    The file is:
    buddypress\bp-templates\bp-legacy\buddypress\members\single\profile\edit.php

    #251223
    Keno
    Participant

    thank you @henrywright , i am looking forward to they bringing back a better plugin directory page!!!! ; )

    it’s the best buddypress plugin resource! my buddypress website can’t live without it! ; )

    #251218

    In reply to: Buddypress issue

    invisibleland
    Participant

    I don’t totally understand this, but here’s the debrief on how it was fixed:

    https://buddypress.trac.wordpress.org/ticket/6940#comment:6

    Thanks!

    WalkerDesign1
    Participant

    I currently have BuddyPress Version 2.5.1 installed and I am uploading an avatar to the members profile. The avatar uploads but I receive the error message – There was a problem cropping your profile photo. And then the upload fails.

    I am running PHP Version 5.4.43 with the current host.

    Does anyone know if this is a php version issue or if there is another fix for this issue?

    #251202
    Keno
    Participant

    No, I meant the plugins directory page of buddypress.org. buddypress.org used to have that, where i could always come to check on for newest third party buddypress plugins… now, it’s gone…

    #251199
    Henry Wright
    Moderator

    There are several ways to do that. You could use language file(s), filtering or even contribute to a particular language pack. See the following article for more info:

    Customizing Labels, Messages, and URLs

    #251198
    Henry Wright
    Moderator

    How are you restricting access to those pages? If Google can see the content then those pages aren’t private. BuddyPress doesn’t make content private by default, neither does it try to.

    Henry Wright
    Moderator

    You will need to use bp_before_has_activities_parse_args for this. The article below has some really great examples to get you started:

    Using bp_parse_args() to filter BuddyPress template loops

    I’d imagine search_terms would be the most suitable parameter to filter in your case.

    #251190
    xxsemmiexx
    Participant

    Hi Henry,

    It’s not about the theme, cause it was working fine till the last buddypress update.
    but the theme that i am using is “Point” from the wordpress theme site.
    http://PROUDLesbians.nl

    Plugins that i am using are:

    Advanced Ads
    Akismet
    Birthdays Widget (for buddypress)
    BP stickers
    Code PHP in widget
    Contact Form 7
    Custom Login Page
    Jetpack
    Loco Translate
    Loginizer
    Quick Chat
    WP Smush
    WP-Optimize
    YOAST Seo.

    #251187
    rbaccaro
    Participant
    hellojesse
    Participant

    Same thing for theme Twenty Fifteen

    Into theme create /buddypress/groups/single/index-action-admin.php copy content from /buddypress/groups/single/admin.php with get_header() and get_footer()

    hellojesse
    Participant

    After submitting new details on page index-action-admin: http://local.wordpress.dev/groups/admin/edit-details/

    NOTICE: wp-content/plugins/buddypress/bp-groups/bp-groups-screens.php:869 - Trying to get property of non-object
    require('wp-blog-header.php'), require_once('wp-includes/template-loader.php'), do_action('template_redirect'), call_user_func_array, bp_template_redirect, do_action('bp_template_redirect'), call_user_func_array, bp_screens, do_action('bp_screens'), call_user_func_array, groups_screen_group_admin_edit_details
    #251166
    Henry Wright
    Moderator

    Try doing everything together. So you should be testing under the following:

    • Twenty Fifteen
    • No plugins activated aside from BuddyPress
    • Nothing in functions.php
    • No bp-custom.php file
    • Latest WP
    • Latest BP

    That should make sure there’s no custom JavaScript running.

    To take things further you could test on a fresh database.

    #251165
    Henry Wright
    Moderator

    buddypress.php is a generic template to be using. Take a look at the Template Hierarchy article for info on the various templates available to BuddyPress.

    This bbPress article will also be useful: https://codex.bbpress.org/themes/theme-compatibility/

    #251159
    kamarr
    Participant

    @shanebp

    Thank you for your assistance!

    The page is now showing a member directory.

    The only things missing now are the member role navigation, filter and search function produced by the index.php file in the plugins/buddypress/bp-templates/bp-legacy/buddypress/members-folder. In addition to that it seems the buddypress css is not rendering as well.

    How could I add those functions to the page-custom-members-loop.php?

    *What is the proper etiquette for using the @ function?

Viewing 25 results - 10,776 through 10,800 (of 69,119 total)
Skip to toolbar