Skip to:
Content
Pages
Categories
Search
Top
Bottom

Forum Replies Created

Viewing 25 replies - 1 through 25 (of 2,755 total)
  • Avatar of @modemlooper
    @modemlooper
    Moderator

    @modemlooper

    You can hide fields from being edited easy. in members/single/edit.php you can exclude fields by ID. Use comma separated list.

    if ( bp_has_profile( 'profile_group_id=' . bp_get_current_profile_group_id() . '&exclude_fields=2,3,4' ) ) :

    full code example https://gist.github.com/modemlooper/5816548

    Avatar of @modemlooper
    @modemlooper
    Moderator

    @modemlooper

    email tweaks you’d like to modemlooper @ gmail.com

    Avatar of @modemlooper
    @modemlooper
    Moderator

    @modemlooper

    Try these:

    remove_filter( 'bp_get_activity_content_body', 'autoembed', 8 );
    remove_filter( ‘bp_get_activity_content’, ‘autoembed’, 8 );

    In the future, please refrain from replying to a 3 year old topic. Create a new one. :)

    Avatar of @modemlooper
    @modemlooper
    Moderator

    @modemlooper

    BuddyPress profile fields are searchable.

    Avatar of @modemlooper
    @modemlooper
    Moderator

    @modemlooper

    Try these:

    remove_filter( 'bp_get_activity_content_body', 'autoembed', 8 );
    remove_filter( ‘bp_get_activity_content’, ‘autoembed’, 8 );

    In the future, please refrain from replying to a 3 year old topic. Create a new one. :)

    Avatar of @modemlooper
    @modemlooper
    Moderator

    @modemlooper

    Version on codex is not fully working on BuddyPress 1.7. Also, it may not work on your device. And, you need to read the setup instructions.

    Avatar of @modemlooper
    @modemlooper
    Moderator

    @modemlooper

    That plugin won’t allow same user account to use multiple profiles.

    Avatar of @modemlooper
    @modemlooper
    Moderator

    @modemlooper

    Sounds like a defect in BuddyPress. So your saying after you click activation link in email and try to login using sidebar login form it says activation key is invalid?

    Avatar of @modemlooper
    @modemlooper
    Moderator

    @modemlooper

    BuddyPress allows any oEmbed provider that WordPress allows. http://codex.wordpress.org/Embeds

    Avatar of @modemlooper
    @modemlooper
    Moderator

    @modemlooper

    I think the reason I’m having funkiness is because the remove links code is inside a function that only runs if a wp option is true.

    Avatar of @modemlooper
    @modemlooper
    Moderator

    @modemlooper

    I’m not sure but it works for me when using init. I’m also calling the file the function is in by using bp_include

    Avatar of @modemlooper
    @modemlooper
    Moderator

    @modemlooper

    Did you click link from email sent after signup?

    Avatar of @modemlooper
    @modemlooper
    Moderator

    @modemlooper

    use init not bp_init

    function remove_xprofile_links() {
    remove_filter( ‘bp_get_the_profile_field_value’, ‘xprofile_filter_link_profile_data’, 9, 2 );
    }
    add_action( ‘init’, ‘remove_xprofile_links’ );
    Avatar of @modemlooper
    @modemlooper
    Moderator

    @modemlooper

    You shouldn’t edit those files. You can add settings with a plugin. If you want that as a core feature then post on http://buddypress.trac.wordpress.org then submit a patch of working code.

    Avatar of @modemlooper
    @modemlooper
    Moderator

    @modemlooper

    If you are on BuddyPress 1.7 you need bbPress for forums. Do you have that installed?

    Avatar of @modemlooper
    @modemlooper
    Moderator

    @modemlooper

    BuddyPress 1.7 + no longer has forums unless you had a previous version with group forums active. I guess you could install an old version activate forums and then upgrade to get the old forums.

    Avatar of @modemlooper
    @modemlooper
    Moderator

    @modemlooper

    looks like your theme is hard handing your form css. you will need to find the css and edit it.

    Avatar of @modemlooper
    @modemlooper
    Moderator

    @modemlooper

    BuddyPress no longer bundles bbPress therefore has no forums. You can install bbPress separately. There is a setting in bbPress to have a forum for each BuddyPress group.

    Avatar of @modemlooper
    @modemlooper
    Moderator

    @modemlooper

    read this: http://buddypress.org/support/topic/extending-activity-how-to-store-additional-info/

    it may help you understand how to add meta to activity

    Avatar of @modemlooper
    @modemlooper
    Moderator

    @modemlooper

    $user_id = get this from WordPress;
    xprofile_get_field_data( $field, $user_id );

    The way you are getting members id is only good on member pages. If you are on a blog post you can get the author id, if you want logged in user id get that.

    Avatar of @modemlooper
    @modemlooper
    Moderator

    @modemlooper

    when you switch theme to bp-default does it do the same?

    Avatar of @modemlooper
    @modemlooper
    Moderator

    @modemlooper

    It’s most likely an issue with an older browser. What version of android are you running?

    Avatar of @modemlooper
    @modemlooper
    Moderator

    @modemlooper

    which BuddyPress Media plugin as there are two with the same name.

    Avatar of @modemlooper
    @modemlooper
    Moderator

    @modemlooper

    Mine isn’t. The others not sure.

    Avatar of @modemlooper
    @modemlooper
    Moderator

    @modemlooper

    it totally works.

    I used this:
    define ( 'BP_AVATAR_DEFAULT', 'http://www.petfinder.com/wp-content/uploads/2012/11/101418789-cat-panleukopenia-fact-sheet-632x475.jpg' );

    view it here:
    http://demo.taptappress.com/members

    Just plopped the code into bp-custom.php

    That plugin you link to takes a silly path using javascript to switch avatar.

Viewing 25 replies - 1 through 25 (of 2,755 total)