Skip to:
Content
Pages
Categories
Search
Top
Bottom

Search Results for 'buddypress'

Viewing 25 results - 7,801 through 7,825 (of 69,109 total)
  • Author
    Search Results
  • #267896
    sagraphics
    Participant

    We use RSS script merge tags in Mailchimp to pull our feed through from our wordpress site each week and automatically send out a newsletter to our subscribers:

    https://templates.mailchimp.com/getting-started/merge-tags/rss-merge-tags/

    This was working perfectly with a title, image and summary for each post, but when we enabled Buddypress with bbPress, each item on the newsletter would show the full text of the post rather than a summary. Once Buddypress was deactivated, the Mailchimp newsletter was given just the summary again for each post and worked perfectly.

    #267893
    r-a-y
    Keymaster

    Since you provided very little information, I can only interpret your post from what you have written.

    What is the “RSS feed to the newsletter”? Is this just a RSS feed to the main WordPress blog post RSS feed?

    I have both BuddyPress and bbPress installed and these plugins do not affect the main blog post RSS feed (example.com/feed/).

    #267892
    MSoliman
    Participant

    i’m using the buddypress groups to add a user role to members in the same group .. i hook into the groups_member_after_saveto add the role , which means when the user become a member he get the role .. and groups_member_before_remove to remove the role ,when the user leave the group the role been removed. my code is working like charm now . what i need is , to add this role when the user become admin to the group , and remove the role when he be demoted to mod or member, or be banned or removed.. this is my current code , to add the role to joined members:

    function bpmp_add_member($bp_group_admin)
    {
      $bp_group = _bpmp_get_group($bp_group_admin->group_id);
      $user = new WP_User($bp_group_admin->user_id);
      $user->add_role(_bpmp_get_role($bp_group));
    }
    
    function bpmp_remove_member($bp_group_admin)
    {
      $bp_group = _bpmp_get_group($bp_group_admin->group_id);
      $user = new WP_User($bp_group_admin->user_id);
      $user->remove_role(_bpmp_get_role($bp_group));
    }
    
    add_action('groups_member_after_save', 'bpmp_add_member', 90, 1);
    add_action('groups_member_before_remove', 'bpmp_remove_member', 10, 1);

    i just need to know what’s the right hooks to use .. i found these hooks but don’t know how to use its functions parameters with the code above

    // define the groups_promote_member callback 
    function action_groups_promote_member( $group_id, $user_id, $status ) { 
        // make action magic happen here... 
    }; 
    
    // add the action 
    add_action( 'groups_promote_member', 'action_groups_promote_member', 10, 3 );
    // define the groups_demote_member callback 
    function action_groups_demote_member( $group_id, $user_id ) { 
        // make action magic happen here... 
    }; 
    
    // add the action 
    add_action( 'groups_demote_member', 'action_groups_demote_member', 10, 2 );

    any help will be highly appreciated

    #267891
    Henry Wright
    Moderator

    The whole freakin Plugin needs a UI & layout makeover. It’s 2017, looks like crap vs today’s UI/UX standards.

    Try to think of BuddyPress as a foundation for your theme to style. If your site looks as bad as you describe then consider switching theme. You mentioned @buddyboss, they build some great themes that might interest you.

    #267890
    Henry Wright
    Moderator

    The best thing to do in this case is take a look through the code:

    https://github.com/buddypress/BuddyPress

    #267889
    sagraphics
    Participant

    So with buddy press enabled, the RSS feed to the newsletter is messed up, yet when disabled, the feed to the newsletter displays perfectly. Doesn’t this mean buddypress/bbpress is messing it up?

    #267888
    r-a-y
    Keymaster

    BuddyPress does not modify the WordPress blog post RSS feed.

    I tested this locally and cannot reproduce the problem. You must have another plugin that is modifying blog post excerpts.

    #267883
    Hugo Ashmore
    Participant

    We’re happy for people to contribute those new UX/UI improvements then!

    Like I said before please stop slatting BP and the people that provide this very complex app for FREE for your use.

    I’m not being impolite @unrealpixel but attempting to get people to realise that the tone of the thread is not pleasant 🙂


    @zo1234

    > Start a kickstarter page lol and hire an excellent UI/UX designer! BuddyPress is too popular of a plugin to have bad design.

    Do it then! What we provide is something that takes a lot of work to achieve and maintain and is the most unsatisfactory means of working with frontend code where we can’t go and add any custom styling as we’re bound to having to try and produce something that works with any theme layout and styling that might arise, again we do this on our own WORK time unpaid so you can understand why all we ask is that people are a little bit appreciative of those efforts 🙂

    #267874

    I know it’s not quite what you’re looking for, but you could always just disable profile uploading in Buddypress’ settings and encourage your users to set up a Gravatar account.

    #267873

    I know it’s not quite what you’re looking for, but you could always disable profile uploading in Buddypress’ settings and encourage your users to set up a Gravatar account.

    #267871
    zo1234
    Participant

    The whole freakin Plugin needs a UI & layout makeover. It’s 2017, looks like crap vs today’s UI/UX standards. This is why people are willing to pay for premium plugins like Ultimate Member plugin $200/year, or BuddyBoss theme – for design & looks alone. I’d even pay for a UI/UX upgrade that looks similar to Ultimate Member because BuddyPress has more add-ons and better performance. Start a kickstarter page lol and hire an excellent UI/UX designer! BuddyPress is too popular of a plugin to have bad design.

    #267869
    x3mp
    Participant

    I am not attacking the BuddyPress Dev team to be clear.
    I’m just saying that there should be a customization option for the registration page.
    Because right now the styles are dependent on the theme. Why not add an option that allows people to place a certain field at a place and fully customize that field to their likings. Of course I understand that is hard and takes a long time and will probably not happen.
    But please the team would make a lot of people happy by adding an option so people can customize the registration page apart from the full theme like its own style sheet.

    #267864
    aladinDr
    Participant

    i guess we’ve developer working with us , has working for make that option for moderator of groups ,and he leaves and let his costumize in our site that’s so unprofessionel , now i cannot contact him , what if i deleted buddypress and install again is that can resolve the issue

    #267862
    Hugo Ashmore
    Participant

    @all Could we maybe a little less rude about BuddyPress styling we put a heck of a lot of our work time into providing BP as theme compatible app, it sounds like you’re all experiencing problems with premium WP themes affecting BP. Our registration screens are as best they can be made when we have to try and cater for unknown styling layouts.

    Above all else before making remarks please do try to bother to read the Codex documentation which explains just how to avail yourselves of the huge flexibility BP template hierarchy affords users and the ease in which you can overload all template files to child themes including the BP stylesheet. In other words RTFM 😉

    > BuddyPress needs to do something about this.

    No we don’t! We don’t have to support premium themes we support themes coded to WP theme standards to do more is more work than a volunteer set of devs can handle. There is always the option of hiring a dev to get things settled in to your theme.

    #267859
    x3mp
    Participant

    Same issue here. I just want to be able to edit the css of the registration fields.
    My theme (Avada) doesn’t have a straight forward style.css it does not simply work like that.
    BuddyPress needs to do something about this.

    #267854
    ppahv
    Participant

    Hi,
    I’ve just installed BuddyPress on my WordPress and I’ve also noticed that BuddyPress messes around with my Flexslider by slowing down the loading of the first slide.
    I don’t get your explanation to solve this problem. Could you be more precise about it?
    Thank you very much your answer.

    #267852
    deadlinkd
    Participant

    hi,

    Been trying to set this up for a few days now, but no success. I’ve setup a multi-site network with sub-directories and buddypress network activated.
    I’ve added define( ‘BP_ENABLE_MULTIBLOG’, true ); to config.php as recommanded for BP multisite install.

    Main site: mydomain.com
    subsite: mydomain.com/subsite

    When users upload their profile picture on main site, unfortunately it doesn’t sync with their profile when they go on the subsite.

    The following codes have worked for some people but not for me. Still trying to find a solution.

    function bpdev_fix_avatar_dir_path( $path ){
    if ( is_multisite() && BP_ENABLE_MULTIBLOG )
    $path = ABSPATH . ‘wp-content/uploads/’;
    return $path;
    }
    add_filter( ‘bp_core_avatar_upload_path’, ‘bpdev_fix_avatar_dir_path’, 1 );
    //fix the upload dir url
    function bpdev_fix_avatar_dir_url( $url ){
    if ( is_multisite() )
    $url = network_home_url(‘/wp-content/uploads’) ;
    return $url;
    }
    add_filter( ‘bp_core_avatar_url’, ‘bpdev_fix_avatar_dir_url’, 1 );

    #267841
    r-a-y
    Keymaster

    You need to translate BuddyPress into French as well.

    View this codex page for more info on how to manually download and apply the French translation:

    Languages and Translations

    #267840
    r-a-y
    Keymaster

    BuddyPress doesn’t use shortcodes.

    Instead, it relies on connecting specific WordPress pages to BuddyPress components.

    Read this section for more info:
    https://codex.buddypress.org/getting-started/configure-components/#settings-buddypress-pages

    #267834
    xxxTRISTAMxxx
    Participant

    Doesn’t buddypresss take on the main theme? So if I design my main theme in Artisteer or Template Toaster doesn’t buddypress take on that main theme?

    #267833
    shanebp
    Moderator

    You can use builder plugins with WP, but not with BuddyPress which uses its own templates.

    #267824
    peter-hamilton
    Participant

    You should copy the buddypress template files to your child theme and edit the individual profile pages there.

    I managed to make a custom profile page like this

    Organic Square Theme aka BBFacelook

    #267821
    aleon4
    Participant

    Multisite running WordPress 4.7.3
    Subdirectory
    BuddyPress Version 2.8.2
    BuddyBoss Social Learner theme -Using child theme
    Did not modify core files

    The other website we’ve tested on is using the WPLMS theme. Comment moderating/notifications were working until we activated BuddyPress.

    #267818
    shanebp
    Moderator

    Try using this hook:
    do_action_ref_array( 'groups_member_before_save', array( &$this ) );

    Found in: buddypress\bp-groups\classes\class-bp-groups-member.php

    #267812
    ulferlingsson
    Participant

    Withdrawn, I realized now that the registration page is a WordPress feature, not buddypress

Viewing 25 results - 7,801 through 7,825 (of 69,109 total)
Skip to toolbar