Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 12,576 through 12,600 (of 68,934 total)
  • Author
    Search Results
  • #240925
    CarpoA
    Participant

    @danbp I mean’t the front-end upload. But I’ve found the issue. In the custom theme I bought is another Buddypress folder which overrides (I guess) the plugin, because when I remove the folder from the theme, I get a seperate menu item which links to uploading a new avatar.

    The custom theme is Blackfyre by Skywarrior, did anybody else had this issue or knows the solution? Maybe like which function I need to include in the custom BuddyPress?

    #240924
    shanebp
    Moderator
    #240914
    ct25
    Participant

    At this point the order by function does not trigger a new sort when changed. It does nothing when you change the ‘order by’ from alphabetical to last active and newly registered. It used to load and return nothing before updating to BuddyPress plugin to the latest version. I really need some help getting this fixed.

    #240909

    In reply to: How to Design BP?

    shanebp
    Moderator
    #240908
    shanebp
    Moderator

    Somebody who has used that plugin and done some some customization, might see this thread, but
    your best bet is to ask the plugin author.

    danbp
    Participant

    Search for #buddypress form#whats-new-form textarea in buddypress.css (bp-templates/bp-legacy/buddypress/css/buddypress.css)

    To operate such a modification, you need to create first a child theme.

    See documentation.

    Also, use a developper tool like Firebug to easely access such layout information.

    #240900
    danbp
    Participant

    Hi,

    not clear what is your issue.

    First screenshot is related to Core bp-xprofile folder. No interest for this case, we have already BP installed.

    Please read Getting Started guide and ensure anything is correctly setup first.
    Use one of WP built-in theme while installing/testing BP.

    As of 2.2.3, BP use a new feature for users profile phot, so you can’t find much related informations about this feature on Google or elsewhere…

    Also, note that users can modify their photo on front-end from their profile page, whithout accessing WP’s dashboard.

    Getting Started

    #240896
    aless1973
    Participant

    i also use userpro plugin , is not really working with buddypress.

    #240894
    Doctor Psyringe
    Participant

    Would “Theme My Login” work with BuddyPress if only enabled for the Root Site and BP’s Primary was a SubSite?

    Here’s a link to that; https://wordpress.org/plugins/theme-my-login/

    Just spit-balling. More to come, I imagine, until the Ticket is Resolved.

    #240891

    In reply to: Admin notification

    shanebp
    Moderator

    Not sure what you mean by approval…

    Use this hook, from buddypress\bp-groups\bp-groups-actions.php :
    do_action( 'groups_group_create_complete', $bp->groups->new_group_id );

    And write a function that sends an email.

    #240887
    shanebp
    Moderator

    afaik, there is no BP function for that.
    You could gather all the group ids like so:

    function get_all_group_membership_requests( $user_id ) {
    	global $wpdb;
    
    	$bp = buddypress();
    
    	return $wpdb->get_col( $wpdb->prepare( "SELECT group_id FROM {$bp->groups->table_name_members} WHERE user_id = %d AND is_confirmed = 0 AND inviter_id = 0", $user_id ) );
    }

    Use:
    $pending_group_ids = get_all_group_membership_requests( bp_loggedin_user_id() );

    #240881

    In reply to: Buddypress Messaging

    jourdesign
    Participant

    So I am using WordPress 4.2.2 running Cinematix theme and I am using Buddypress Version 2.3.2.1. As you suggested I changed the theme and it worked perfectly any ideas on how to fix it ?

    #240879

    In reply to: Chat plugin?

    mariatrier
    Participant

    Just wanted to give a heads up here. We chose Cometchat… and oh my what a mess. We ended up hiring them for a custom solution that they simply can’y seem to solve. It’s not an easy task as it’s their small chat window + adding their chat in a large chat window within the Buddypress profile (and so the two should sync instantly), but non the less should be fixable.

    We should have been finished several weeks ago, it’s 7 days since we should have launched and we have a chat plugin that is utter rubbish as it does not work and cannot launch…

    Either they fix one thing and destroy three other things within their plugin along the way, they fix one thing but mess up our site or they, as now, simply do not answer me (nor work on files) although their support is online. I’ve tried to chat them up on Skype but they have “limited Skype access” (their product is a chat…) although they are online.

    So for now I cannot recommend Cometchat. I do still hope to hear from them and hope they will fix all these issues during today and tomorrow, saturday, but I doubt it.

    Sigh!

    #240875
    Antipole
    Participant

    OK – in the absence of anyone enlightening me, I set up a test site with just WP, BuddyPress and bbPress, together with the plugin ’email log’. I determined that emails are not sent by bbPress.

    I have now installed BuddyPress Forum Notifier, which seems to do the job.

    I am presently experimenting with cron to ensure the batching of comments works reliably.

    #240870
    danbp
    Participant

    Hi @thesmartone,

    I even changed wp_config.php, variable WPLANG
    This is no more necessary since WP 4.0

    If your WP is in portugese, BP should be in same language automatically (except if you deactivated this feature)

    BP translation can be found on GlotPress. pt_BR is translated to 96% (see here)
    The po/mo files goes to wp-content/languages/plugins/buddypress-pt_BR.mo

    Your comment is awaiting moderation, is a default WP string. In many cases, it can also be in theme. To ensure this, activate 2013 or 2015 and test all translations for WP and BP.
    Deactivate all other plugins while doing this.

    And before claiming about buggypress, check for PBCK. Or better, read the doc before installing something. 😉

    #240869
    danbp
    Participant
    shanebp
    Moderator

    You’re talking about the value of $this in the filter call in class BP_Legacy extends BP_Theme_Compat ?
    add_filter( 'bp_get_activity_action_pre_meta', array( $this, 'secondary_avatars' ), 10, 2 );

    Good question.
    And I’d be interested in the answer.

    There must be a simple way to disable secondary avatars…
    You might want to ask about this on Slack.

    Meanwhile, this works, not very efficient ‘tho.
    Hook is in bp-activity\bp-activity-template.php

    function remove_secondary_avatar( $item_id ){
    	
    	$item_id = '';
    	
    	return $item_id;
    }
    add_filter( 'bp_get_activity_secondary_avatar_item_id', 'remove_secondary_avatar' );

    And this works, but I don’t know why :<

    function remove_activity_secondary_avatars( $action, $activity ) {
        
        if ( $activity->component = NULL ) {
    	// don't do anything
        }
    
        return $action;
    }
    add_filter( 'bp_get_activity_action_pre_meta', 'remove_activity_secondary_avatars', 10, 2 );
    #240858
    shanebp
    Moderator

    I never suggested you remove the ‘old’ folder.
    You mean this folder?
    buddypress\bp-templates\bp-legacy\buddypress\members\activate.php
    If so, no.
    And re-read the whole codex page so that you understand what a template overload is.

    #240855
    danbp
    Participant

    @oliver_rub,

    all i could say is that is an old request, even if confidential.
    See this ticket opened 4 years ago
    and this bbpress ticket kicked to 2.7 as idea. And why not 6.0 ? 😉

    Supposing that if more people would ask, it will be resolved faster.

    Aside, the gist given by imath need to be completed to work with BP 2.3.2.1 on text Tab (only) by adding
    bp_is_group to if ( function_exists( 'bbpress' ) && is_bbpress() || bp_is_group() )

    And to enable visual editor, no need of a plugin. See here.

    #240854
    BurkeKnight
    Participant

    I’m working on another site, and did as did on the first site. However, different theme (child).

    Added: wp-content/themes/flat-child/buddypress/members

    Now, whatever I do to register.php should show, but does not.
    Could this be due to having to set the child theme up this way:

    Enqueue both parent and child stylesheets
    Select this option if stylesheet link tags are hard-coded into the header template (common in older themes). This enables the child stylesheet to override the parent stylesheet without using @import.

    #240852
    shanebp
    Moderator

    You might want to google printf so that you understand what %s does.

    You can do this:
    printf( __( 'Your account was activated successfully! You can now <a href="%s">log in</a> with the username and password you provided when you signed up.', 'buddypress' ), 'http://mydomain.com/my-account/' ); ?>

    You can also replace the printf with:
    echo 'Your account was activated successfully! You can now <a href="http://mydomain.com/my-account/>log in</a> with the username and password you provided when you signed up.';

    #240851
    b2marketing
    Participant

    Hi Shane

    Thanks for quick reply.

    Its because I am using a badge plugin that requires Buddypress to be active before the badge plugin will work for bbPress.

    I will check in the bbPress forum. Thanks

    #240849
    shanebp
    Moderator

    Why are you using BuddyPress if you use Ultimate Member ?

    Have you considered turning off the xprofile component in BP?

    You might want to ask on bbPress forums about how to filter the author links in forums.

    shanebp
    Moderator

    afaik, The ‘Upload Image’ is not part of BuddyPress.
    So it is in your theme or some other plugin.

    #240836
    shanebp
    Moderator

    Please don’t double post. Your other thread has been deleted.

    Unless you are specifically using the bp-default theme, you should create a template overload of this file:
    buddypress\bp-templates\bp-legacy\buddypress\members\activate.php
    And make your changes there.

Viewing 25 results - 12,576 through 12,600 (of 68,934 total)
Skip to toolbar