Shape the future of Social networking with WordPress: Join Project Midnight Sun! The next generation platform for community building with WordPress!

BuddyDev

Search

Replies

  • Keymaster
    (BuddyDev Team)
    Posts: 25486
    Brajesh Singh on in reply to: Suggestion for moderation plugin #41929

    Hi Jaytee,
    Thank you for the suggestion.

    This sounds a nice addition. Currently, user suspension is manual, there is no auto suspension. The hiding of reported content is automated based on threshold.

    We are adding it to our feature list for the future release and will evaluate the feasibility with our current implementation. This will need 2 change( adding option to auto suspend user if some of their content is marked hidden) and adding another option to remove suspension on content delete.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486

    Hi,
    Thank you for the reply and your mail.

    I have released an update. The issue was the number of groups in the associated tab scope was limited to 10. I have removed that limit now.

    Please upgrade and let me know if it works for you or not?

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25486
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25486
    Brajesh Singh on in reply to: [Resolved] Auto Join not working for new users #41918

    Thank you 🙂

  • Keymaster
    (BuddyDev Team)
    Posts: 25486
    Brajesh Singh on in reply to: [Resolved] Auto Join not working for new users #41912

    Hi,
    Thank you.

    Please upgrade to the latest version and give it a try.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486
    Brajesh Singh on in reply to: [Resolved] Auto Join not working for new users #41910

    Hi,
    Thank you for checking.

    I have looked into the plugins. Fluent forms does offer a hook “fluentform_user_registration_completed” when the user registration is complete.

    I am pushing an update very soon today with this support. I will need your help testing if that works or not.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25486

    Hi Kyle,
    Thank you for the patience.

    I have looked and found the issue.

    1. You are using a custom post type(recipe) which does not support “content” or “excerpt” fields.
    2. In our BuddyBoss entry template, we call the_excerpt() if the $post->post_excerpt is empty(which is true for this post type)
    3. WordPress filters on the excerpt using “get_the_excerpt” and if the excerpt is empty, It use $post->post_content(after applying the_content) filter. Then trims the value to create new excerpt.

    4. we are also using the filter “get_the_excerpt” to append/prepend the meta in posts loop and “the_content” filter to append meta on the single posts screen.

    5. Due to the above filters, if you have added some meta to be displayed with post and post content is empty, that meta becomes the generated content and excerpt is created from that.

    6. That’s why you are seeing some of the meta fields which you enabled for single post screen on the posts loop with the post loop meta.

    If you do not want to support the content/excerpt in future for the Recipe post type, there is a simple solution. Override the posts list template for recipe posts type in your child theme(for BuddyBlog).

    The other way is to have the custom excerpt support enabled and have the excerpt field customizable by the user. It won’t need any template override in the child theme.

    Please let me know if you do not plan to ad the support for content/excerpt for recipe in future. i will supply the files then.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486
    Brajesh Singh on in reply to: [Resolved] Auto Join not working for new users #41899
    This reply has been marked as private.