Skip to:
Content
Pages
Categories
Search
Top
Bottom

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

BuddyPress.org


  • All Members
  • RSS
  • Profile picture of Paul Wong-Gibbs

    Paul Wong-Gibbs replied to the topic Disable "Link Preview" in the forum How-to & Troubleshooting 10 years, 2 months ago

    Right. That’s WordPress 4.4’s embed feature https://codex.wordpress.org/Version_4.4

    I think we added support for that to our activity stream in our last relese.
    If you don’t want the feature at aall, https://wordpress.org/plugins/disable-embeds/ might work.

  • Profile picture of Henry Wright

    Henry Wright replied to the topic Is buddy press suitable? in the forum Creating & Extending 10 years, 2 months ago

    Is it a relatively simple process?

    Yes, BuddyPress is just a plugin so once you have WordPress set up you can install BuddyPress via a few clicks.

    Importing members from a spreadsheet will most likely need a plugin. Try searching the Plugin Directory to see what is available.

  • Profile picture of Henry Wright

    Henry Wright replied to the topic Is buddy press suitable? in the forum Creating & Extending 10 years, 2 months ago

    BuddyPress can do all of these things right out of the box. Regarding point 5, you will need to disable both the private messaging and activity components. That can be done from the admin area in a few clicks.

  • Profile picture of Paul Wong-Gibbs

    Paul Wong-Gibbs replied to the topic After Update buddypress 2.5, Mail not send html fromat in the forum How-to & Troubleshooting 10 years, 2 months ago

    You must have a plugin that affects how WordPress delivers email. Can you list what plugins you have active?

  • Profile picture of Henry Wright

    Henry Wright replied to the topic howto downgrade? in the forum Installing BuddyPress 10 years, 2 months ago

    You shouldn’t *need* to restore your database.

    @djpaul I’m assuming that doesn’t apply to every new release though?

  • Profile picture of Henry Wright

    Henry Wright replied to the topic Limit Comments Per User in the forum How-to & Troubleshooting 10 years, 2 months ago

    It isn’t really a copy-and-paste example. You’ll need to be comfortable with PHP and WordPress 🙁

    Alternatively though, you could look for a plugin in the Plugin Directory. Maybe the functionality you need already exists?

  • Profile picture of Jeffin Johnson

    Jeffin Johnson's profile was updated 10 years, 2 months ago

    Jeffin Johnson

    @jeffinj

    View Profile
  • Profile picture of Paul Wong-Gibbs

    Paul Wong-Gibbs replied to the topic PHP to get Field-Group-ID given Field-Group-Name? in the forum Creating & Extending 10 years, 2 months ago

    I took a quick look and can’t see one function. There’s probably a better way, but you could use xprofile_get_field_id_from_name( $name ) and pass that to xprofile_get_field( ... ) to get a BP_XProfile_Field object, then access its ->$group_id property.

  • Profile picture of Flag of Thailand

    Flag of Thailand's profile was updated 10 years, 2 months ago

    Flag of Thailand

    @thaiflag

    View Profile
  • Profile picture of Henry Wright

    Henry Wright replied to the topic Limit Comments Per User in the forum How-to & Troubleshooting 10 years, 2 months ago

    It’s fairly easy to get the comment count for a particular user.

    $args = array(
    'user_id' => bp_loggedin_user_id(),
    'count' => true
    );
    $count = get_comments( $args );

    From that point on, depending on what action the user is taking on your site, you can check the count against a pre-determined figure:

    if ( $count < 10 ) {
    // The…
    [Read more]

  • Profile picture of Paul Wong-Gibbs

    Paul Wong-Gibbs replied to the topic 'bp_email_use_wp_mail' Causing Issues in the forum How-to & Troubleshooting 10 years, 2 months ago

    To update this thread, I’ve just added a fix for emails not sending for certain server configurations. See https://buddypress.org/support/topic/read-this-first-buddypress-2-5-master-list/ and https://buddypress.trac.wordpress.org/ticket/6947

    I think this will help many people, but I would surprised if it fixed everything for everyone. Fingers crossed!

  • Profile picture of Paul Wong-Gibbs

    Paul Wong-Gibbs replied to the topic 'bp_email_use_wp_mail' Causing Issues in the forum How-to & Troubleshooting 10 years, 2 months ago

    2.) Then when altering configuration (i.e. adding add_filter( ‘bp_email_use_wp_mail’, ‘__return_true’ ); to BP_Custom), and testing again, the emails output a combination of WP Better Email and the default template with various CSS Styles altering different parts of the email with each new email sent.

    BTW, this is exactly what I expect to happen.…[Read more]

  • Profile picture of Paul Wong-Gibbs

    Paul Wong-Gibbs replied to the topic Disable "Link Preview" in the forum How-to & Troubleshooting 10 years, 2 months ago

    Can you share a screenshot of the problem?

  • Profile picture of Paul Wong-Gibbs

    Paul Wong-Gibbs replied to the topic bad certificate in BP French in the forum How-to & Troubleshooting 10 years, 2 months ago

    I’ll get it reported, but don’t expect any immediate fix. It’s beyond our immediate control.

  • Profile picture of Paul Wong-Gibbs

    Paul Wong-Gibbs replied to the topic Activation mails not send after update in the forum How-to & Troubleshooting 10 years, 2 months ago

    I’ve just added a fix for emails not sending for certain server configurations. See https://buddypress.org/support/topic/read-this-first-buddypress-2-5-master-list/ and https://buddypress.trac.wordpress.org/ticket/6947

    I think this will help many people, but I would surprised if it fixed everything for everyone. Fingers crossed!

  • Profile picture of Paul Wong-Gibbs

    Paul Wong-Gibbs replied to the topic howto downgrade? in the forum Installing BuddyPress 10 years, 2 months ago

    You shouldn’t *need* to restore your database.

  • Profile picture of RecoilDesign

    RecoilDesign's profile was updated 10 years, 2 months ago

    RecoilDesign

    @recoildesign

    View Profile
  • Profile picture of RecoilDesign

    RecoilDesign replied to the topic Custom post type comment tracking in the forum How-to & Troubleshooting 10 years, 2 months ago

    I’m in the same boat and would love to hear some feedback on this question. It’s exciting to see Custom Post Type Tracking included in 2.5 but the documentation is a little hard to understand.

    If anyone could please explain how to enable comment tracking for custom post types (in layman’s terms), it would be a huge help.

  • Profile picture of Henry Wright

    Henry Wright replied to the topic howto downgrade? in the forum Installing BuddyPress 10 years, 2 months ago

    Did you keep a backup copy of your database? If so then you’ll need to use that. Then there’s the files and folders. You should be able to get the 2.4.3 zip from:

    https://downloads.wordpress.org/plugin/buddypress.2.4.3.zip

  • Profile picture of Paul Wong-Gibbs

    Paul Wong-Gibbs replied to the topic Activation mails not send after update in the forum How-to & Troubleshooting 10 years, 2 months ago

    @ingeb1983 Thanks – narrows down the possibilities. I think too we’ll need to wait until 2.5.1 comes out and we can see if that made any change.

  • 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