Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 18,601 through 18,625 (of 94,540 total)
  • Author
    Search Results
  • froster2
    Participant

    Hi @danbp, I was able to filter the sitewide activity page to filter and show only “activity_update”. I am trying to achieve this in the personal member profile page. How can I display “activity_update” only for the personal member profile activity page e.g. buddypress.com/members/admin ?

    #242806
    crblanchard
    Participant

    I’ve been using Buddypress for months now with no issues, but just today I began having the same issue. I’ve been trying different ways to get around the problem for almost an hour now and haven’t found a thing.

    Shaktimaan
    Participant
    cityfox
    Participant

    Hi,

    I want to build a staff directory for my company’s Intranet site. I use the Buddypress groups for our departments. I want to have a page that displays all groups and a list of members of a selected group.

    The group names should always be visible on top (like a menu). By clicking on a group (e.g. “Department A”) only members of “Department A” shall be listed under the group names. By clicking on another group (e.g. “Department B”) only members of “Department B” shall be listed under the group names.

    I already found out how to copy and edit the groups-loop.php in my child theme. But I don’t know how to go on.

    I use WordPress 4.2.2 with Buddypress Version 2.3.2.1.

    #242790
    hich-em
    Participant

    Hi there,

    I have a question: how to allow adding more than one attachment?

    http://wordpress.org/extend/plugins/buddypress-message-attachment/

    Thanks for this useful plugin.

    #242788
    kongcomm
    Participant

    Hi Members,

    Im Kevin and I recently downloaded the latest version of buddypress (V2.3.2.1) but cannot install via wordpress dashboard or FTP because the stylesheet is missing. I tried to install the theme several times via wordpress or FTp but to no avail.

    Can anyone provide me with a working stylesheet? Also you might want to check the zip file if its there.

    Thanks for the help

    #242787
    messina82
    Participant

    Hi All, i’m been looking like crazy to find a solution but have yet to come by it. I’ve created a custom menu in wordpress and placed it in a widget which is essentially my 3rd nav bar. I would like for it to display the user avatar when a user is logged in as the first or second list item in the menu. Anyone have a clue?

    Any help would be much appreciated!

    rhanna1461
    Participant

    Hi, I’m brand new to Buddypress and I’m trying to create my registration and activate pages. I’ve selected the appropriate pages for each one and clicked save. Then, I viewed the page and it’s just redirecting to my home page.

    So, changed the drop down to tie to a different page. Still nothing. However, now the 2 original pages are working again.

    So essentially, once I link the registration and activate pages to specific pages, it setups a redirect. I remove them, and the redirect goes away.

    Any ideas? Thanks!

    #242780
    Garrett Hyder
    Participant

    Posted Enhancement Request – https://buddypress.trac.wordpress.org/ticket/6575#ticket
    If you have any suggestions or changes @shanebp your input is appreciated.
    Thanks

    #242779
    Garrett Hyder
    Participant

    Thanks @shanebp,

    Sadly neither of these filters will allow me to modify the ‘(required)’ text itself which is what I’m looking for, I guess I’m a little off in my request encompassing the entire label text as you pointed out the field name is filterable it’s the required portion that is outside of it as you can see in the code snippet;

    <label for="<?php bp_the_profile_field_input_name(); ?>">
    	<?php bp_the_profile_field_name(); ?>
    	<?php if ( bp_get_the_profile_field_is_required() ) : ?>
    		<?php esc_html_e( '(required)', 'buddypress' ); ?>
    	<?php endif; ?>
    </label>

    And yes I realize I can replace it through the text-domain and a .po file, but I’d like to keep the (required) in the Buddypress Xprofile and target the inclusion of these fields specifically on the Woocommerce Checkout page where they’re included through the Buddypress for Woocommerce integration.

    I’ll open an enhancement request, thanks for pointing that out, and specify the targetting of the (required) portion of the label specifically.

    Appreciated,
    Cheers

    #242778
    shanebp
    Moderator

    Did you try using:
    apply_filters( 'bp_get_the_profile_field_name', $field->name );
    and / or
    apply_filters( 'bp_get_the_profile_field_is_required', (bool) $retval );
    from bp-xprofile\bp-xprofile-template.php ?

    You can open an enhancement ticket here.

    #242777
    Garrett Hyder
    Participant

    Hello,

    Looking to request a feature for the xProfile fields, if this isn’t the right place to make sure a request can someone point me in the right direction.

    I would love the xProfile classes be updated so the field labels are filterable, in my case this would be useful so I can replace the standard (required) denotation specifically when the xProfile field is included on the WooCommerce Checkout form to utilize the standard woocommerce asterisk (*) denotation.

    The concept comes from the custom xProfile classes created by @donmik for the Buddypress Xprofile Custom Fields Type plugin;
    https://wordpress.org/plugins/buddypress-xprofile-custom-fields-type/

    My specific implementation where the Xprofile fields are incorporated onto the Woocommerce Checkout form comes with the tandem implementation of the paid and free plugins by themekraft
    Paid Primary – http://themekraft.com/store/woocommerce-buddypress-integration-wordpress-plugin/
    Free Addon – https://wordpress.org/plugins/woocommerce-buddypress-integration-xprofile-checkout-manager/
    Together these include the Xprofile fields onto the Checkout, however they don’t quite match with the Woocommerce fields so I had to add classes to them (currently capable through the bp_xprofile_field_edit_html_elements filter) and want to replace the (required) in the label with the appropriate asterisk.

    My current workaround involves jQuery to do the label replace, but I would prefer a label filter.

    /**
     * Add Javascript to replace Buddypress (required) with Woocommerce required asterisk (*)
     */
    add_action('woocommerce_after_checkout_form', 'wc4bp_woo_replace_required_for_xprofile_checkout_fields');
    
    function wc4bp_woo_replace_required_for_xprofile_checkout_fields() {
        echo '<script>jQuery(document).ready(function($){$(".wc4bp_custom_checkout_fields_group label").each(function(i){$(this).html($(this).html().replace("(required)","<abbr class=\"required\" title=\"required\">*</abbr>"));});});</script>';
    }

    An example how @donmik implemented a label filter for his custom Xprofile fields;

    $label = sprintf(
    	'<label for="%s">%s%s</label>',
    		bp_get_the_profile_field_input_name(),
    		bp_get_the_profile_field_name(),
    		(bp_get_the_profile_field_is_required()) ?
    			' ' . esc_html__( '(required)', 'buddypress' ) : ''
    );
    // Label.
    echo apply_filters('bxcft_field_label', $label, bp_get_the_profile_field_id(), bp_get_the_profile_field_type(), bp_get_the_profile_field_input_name(), bp_get_the_profile_field_name(), bp_get_the_profile_field_is_required());

    Hoping this is the right channel for this request, otherwise hoping someone can point me to it. Or if the plugin is available on github would be happy to make a fork request and code the change myself.

    Thank you

    #242774
    vuko
    Participant

    maybe can help us this post:

    Making WordPress SEO plugin compatible with BuddyPress

    i stil have to read it, but i hope this is the right track.

    Thanks again

    #242773
    kylenutt
    Participant

    Hi there,

    I have just installed buddypress and it is working perfectly apart from one thing. I cannot find a simple way to see the other members. If I type the address in manually (www.mywebsite.com/members) I can see them but there is no actual link on the social space to take users to this page. Obviously without this members cannot see other contacts, cannot request friendships and therefore will not interact with each other. How can I install this option?

    Thanks for all your help!

    Kyle

    #242772
    Henry Wright
    Moderator

    It’s unusual that BuddyPress isn’t working with a theme due to the Theme Compatibility that was introduced in 1.7. I suggest you open a support request with the theme author asking them to investigate why the theme isn’t working properly with BP. Most theme authors are happy to make their themes BP-compatible so hopefully you’ll get a response.

    #242748
    shanebp
    Moderator

    a little incontinence

    It might be a little inconvenient, but nothing that will require a diaper.

    It’s easy to add modified versions of these 2 files to a buddypress folder in your theme – then change or add a css class to the description.
    bp-templates\bp-legacy\buddypress\groups\groups-loop.php
    bp-templates\bp-legacy\buddypress\groups\single\group-header.php

    Info re template overloading:

    Theme Compatibility & Template Files

    BuddyPress Version 2.3.2.1
    WordPress Version 4.2.3
    Theme: Nirvana Version 1.1.0

    The group description for all groups is a medium shade of grey. It is somewhat readable to a degree, but I would prefer to change the color to black instead. I noticed some existing topis where people mentioned about profile fields or the font being too large, but I did not stumble upon changing the color. If desired I can post a link to the .css coding if that would be beneficial. Basically what am I looking for in the .css file and how do I resolve it?

    Note: I would rather avoid building a child theme due to my lack of knowledge on the matter. Sure it would be a little incontinence when I have to upgrade my theme, but at least I can paste the answer back in the .css file.

    #242744
    Pete Hudson
    Participant

    I opened a ticket at https://buddypress.trac.wordpress.org/ticket/6573

    Per @hnla “It’s due to recent changes to how media is handled in BP activity streams, the problem is the removal of image attr such as class tokens and the image name references the WP image size.”

    For some reason, I’m not able to comment on the ticket.

    Does anyone have any idea how to fix this? Is it going to be fixed on an upgrade?

    mycru.io
    Participant

    @djsteveb

    – I disabled buddypress-social-icons & mycred
    But it is still not working. Debug Log still shows this:
    (happening on a desktop computer). I checked: the media that was attached ends up in the media library, but why is it not showing in the activity feed ?

    [03-Aug-2015 21:40:49 UTC] PHP Notice: bp_core_get_notifications_for_user is deprecated since version 1.9! Use bp_notifications_get_notifications_for_user() instead. in /homepages/26/d553229553/htdocs/clickandbuilds/kawaii/wp-includes/functions.php on line 3391
    [03-Aug-2015 21:40:50 UTC] PHP Notice: bp_setup_current_user was called incorrectly. The current user is being initialized without using $wp->init(). Please see Debugging in WordPress for more information. (This message was added in version 1.7.) in /homepages/26/d553229553/htdocs/clickandbuilds/kawaii/wp-includes/functions.php on line 3560
    [03-Aug-2015 21:40:51 UTC] PHP Notice: bp_setup_current_user was called incorrectly. The current user is being initialized without using $wp->init(). Please see Debugging in WordPress for more information. (This message was added in version 1.7.) in /homepages/26/d553229553/htdocs/clickandbuilds/kawaii/wp-includes/functions.php on line 3560

    #242741
    Henry Wright
    Moderator

    You can filter the title with the wp_title hook.

    You will need to set some conditions to be sure you’re filtering the title of the right page. See the Template Tags Reference for more info.

    djsteveb
    Participant

    @kawaiikawaii – does it work if you disable
    buddypress-social-icons
    mycred

    and any other plugins, along with switching to 2014 theme?

    Is this happening when using a desktop computer or a mobile device?

    My users have been telling me that rtmedia image uploads no longer make it to the activity stream or profiles when they try using an android device (tablet or cell) – this has been reported my several others at the rtcamp’s no-support-community-forums ( http://community.rtcamp.com/t/cant-upload-photos-using-android-devices/4892/8 )

    At this point I don’t know what the problem is – is it wp’s new security update thing that broke a lot of things?

    I’m still searching for answers – but this is a major problem and a reason I have been suggesting for years that BP has media uploads as part of core (most recently here – https://buddypress.org/support/topic/rtmedia-export-script-attachments-api/ )- and hopefully hooks into the new bp-attachments thing.

    Now if someone can code an export / import conversion to pull all the info from rtmedia into basic structured info that any theme or other plugin can call / style, etc – I’d love to axe the ridiculously bloated rtmedia BS.

    CraigM1970
    Participant

    So when I view the Activity in the backend I see an error:

    Warning: usort() expects parameter 1 to be array, string given in **********/wp-content/plugins/buddypress/bp-activity/bp-activity-akismet.php on line 652

    Should I disable Akismet?

    The links are enclosed in single quotes e.g. <a href=’http

    If I change it to <a href=”http

    then the problem is sorted. But new activity still has the links in single quotes.

    #242738
    djsteveb
    Participant

    @vuko – I don’t know where the code is, but there was a thread about 4months old – https://buddypress.org/support/topic/bussdypress-title-and-seo-yoast-problem/ – with SOME details – unfortunately I don’t think anything has changed much since then – although my fingers are crossed there will be more options with this in the future.

    Maybe something along the lines of this suggest – https://buddypress.org/support/topic/page-titles-meta-desc-option-like-wp-permalinks/

    perhaps others can chime in how to make that better, more flexible, and perhaps a plugin or something.

    mycru.io
    Participant

    I am using the latest wordpress and buddypress- with kleo from seventhqueen

Viewing 25 results - 18,601 through 18,625 (of 94,540 total)
Skip to toolbar