Skip to:
Content
Pages
Categories
Search
Top
Bottom

  • About
  • News
  • Codex
  • Develop
  • Make
  • Forums
  • Download

BuddyPress.org


  • All Members
  • RSS
  • Profile picture of Jeons Adem

    Jeons Adem's profile was updated 8 years, 3 months ago

    Jeons Adem

    @briftszn4e

    View Profile
  • Profile picture of David Cavins

    David Cavins replied to the topic Question Regarding Group Creation Link in the forum Ideas 8 years, 3 months ago

    Thanks for opening the Trac ticket.

    Ref: https://buddypress.trac.wordpress.org/ticket/7673

  • Profile picture of David Cavins

    David Cavins replied to the topic PHP 7.0 en 7.1 update needed, site is slow in the forum How-to & Troubleshooting 8 years, 3 months ago

    rtMedia is a plugin of its own and not a part of a standard WordPres install. Check out their support forum here:

    rtMedia for WordPress, BuddyPress and bbPress

  • Profile picture of David Cavins

    David Cavins replied to the topic Change activity link on a multi language site in the forum How-to & Troubleshooting 8 years, 3 months ago

    Hi Martijn-

    I imagine that the reason that no one answered is that none of the volunteers that offer help here knows anything about your specific issue.

    You can change the activity directory link like you were guessing, using the bp_get_activity_directory_permalink filter:


    add_filter( 'bp_get_activity_directory_permalink', function ( $url )…
    [Read more]

  • Profile picture of David Cavins

    David Cavins replied to the topic [Resolved] Change Order by (Groups –> Documents) in the forum How-to & Troubleshooting 8 years, 3 months ago

    Hi Ulrich-

    I’m guessing this is also about BP Docs, and the same filter holds the answer:


    add_filter( 'bp_after_bp_docs_has_docs_parse_args', function ( $args ) {
    $args['orderby'] = 'title';
    $args['order'] = 'ASC';
    return $args;
    } );

  • Profile picture of David Cavins

    David Cavins replied to the topic [Resolved] Change number of Viewing item (Groups) in the forum How-to & Troubleshooting 8 years, 3 months ago

    Hi Ulrich-

    It sounds like you’re talking about BuddyPress Docs, not BP. If so, there’s a filter, and you could use it something like this:


    add_filter( 'bp_after_bp_docs_has_docs_parse_args', function ( $args ) {
    $args['posts_per_page'] = 100;
    return $args;
    } );

  • Profile picture of David Cavins

    David Cavins replied to the topic Profile Links – Removing http/https in the forum Creating & Extending 8 years, 3 months ago

    Sounds promising!

  • Profile picture of David Cavins

    David Cavins replied to the topic Register issues – Looping in the forum How-to & Troubleshooting 8 years, 3 months ago

    Hello there. BuddyPress doesn’t use a shortcode–a register page just need to exist and be identified. Could you be using some other plugin?

    Otherwise, double-check that the register page is properly associated at wp-admin > settings > buddypress.

  • Profile picture of David Cavins

    David Cavins replied to the topic Not receiving most notification emails. All plugins deactivated in the forum How-to & Troubleshooting 8 years, 3 months ago

    Hello, if emails are being sent (you’re receiving them at a Yahoo address), then my first guess would be that gmail is treating the mails as spam. Look in your spam folder to see if they’re there.

    There are a number of ways to improve deliverability, but that’s beyond the scope of BuddyPress. You might read up on the topic at SparkPost or one of…[Read more]

  • Profile picture of David Cavins

    David Cavins replied to the topic Fixing deprecated bp_nav code? in the forum How-to & Troubleshooting 8 years, 3 months ago

    To change items, see the link I referenced: https://codex.buddypress.org/developer/navigation-api/#change-item-names-of-users-and-groups-nav-menus

  • Profile picture of Toren Marks

    Toren Marks's profile was updated 8 years, 3 months ago

    Toren Marks

    @kreston4g

    View Profile
  • Profile picture of Toren Marks

    Toren Marks's profile was updated 8 years, 3 months ago

    Toren Marks

    @zukrisn20b

    View Profile
  • Profile picture of otty-dev

    otty-dev replied to the topic Modifying the HTML for Each of the Member's Profile Pages in the forum How-to & Troubleshooting 8 years, 3 months ago

    Hi @mastershas thanks for your suggestion. I’ll try this out. I was also wondering how I could modify the author bio at the end of each blog post to show the bio from the buddypress profile page (this was based on your other thread).

  • Profile picture of Toren Mark

    Toren Mark's profile was updated 8 years, 3 months ago

    Toren Mark

    @merthke4c

    View Profile
  • Profile picture of @mercime

    @mercime replied to the topic PHP 7.0 en 7.1 update needed, site is slow in the forum How-to & Troubleshooting 8 years, 3 months ago

    @martijn1972 “Uploading videos” via third-party plugin? Have you tried posting at the plugin’s forums?

  • Profile picture of @mercime

    @mercime replied to the topic Profile dropdown menu takes details from friend when clicking on friends profile in the forum How-to & Troubleshooting 8 years, 3 months ago

    @martijn1972 Hi, I’ve not encountered that issue. Could be a theme issue. Have you tried changing to the Twenty Seventeen/Sixteen default theme? It would also help others help you if you provide more information about your installation. Like, do you have a BP-compatible plugin that’s not been updated for a while?

  • Profile picture of David Cavins

    David Cavins replied to the topic Show Follow Button on Each Member's Profile Page in the forum Third Party Plugins 8 years, 3 months ago

    BuddyPress adds the friends button via the action:

    add_action( 'bp_member_header_actions', 'bp_add_friend_button', 5 );

    You’re saying “follow” so I’m assuming that you’re using a plugin that modifies the basic BP behavior. You might check to see that that plugin doesn’t unhook the bp_add_friend_button() from the member header.…[Read more]

  • Profile picture of David Cavins

    David Cavins replied to the topic Profile Links – Removing http/https in the forum Creating & Extending 8 years, 3 months ago

    Huh. Well, I guess you could probably find URLs like that using some regular expression pattern for

    <a href="<url>"><url></a>

    and apply it like you did at https://core.trac.wordpress.org/ticket/32787, but I’m no regex expert, so I can’t help with that.

    It would be easier once make_clickable() adds a filter, for sure.

  • Profile picture of David Cavins

    David Cavins replied to the topic Email's situation's are not displayed… in the forum Requests & Feedback 8 years, 3 months ago

    You can also try the BuddyPress email reinstallation tool if you’re having problems. It’s in WP Admin at Tools > BuddyPress, like /wp-admin/tools.php?page=bp-tools.

  • Profile picture of David Cavins

    David Cavins replied to the topic Question Regarding Group Creation Link in the forum Ideas 8 years, 3 months ago

    Hi @destac–

    Please open a ticket on trac: https://buddypress.trac.wordpress.org/

    which is a better place to suggest improvements to BuddyPress.

    Thanks!

    -David

  • Load More

WordPress.org bbPress.org BuddyPress.org Matt Blog RSS

GPL Contact Us Privacy Terms of Service X

Skip to toolbar
    • WordPress.org
      • About WordPress
      • Documentation
      • Support Forums
      • Feedback
      • Developer Trac
      • Developer Blog
    • bbPress.org
      • About bbPress
      • Documentation
      • Support Forums
      • Feedback
      • Developer Trac
      • Developer Blog
    • BuddyPress.org
      • About BuddyPress
      • Documentation
      • Support Forums
      • Feedback
      • Developer Trac
      • Developer Blog
  • Log in
  • Anonymous
    • AnonymousNot Logged In
    • Register
    • Log In