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: 25337

    Hi Vanessa,
    We did create this plugin.

    I or @ravisharma will share it on Monday. We are not sure if we will be making it free or paid. We will send a copy to you for using irrespective of the license.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25337

    Hi Eric,
    Thank you for the replies.

    Our team will assist you with some code or plugin by Monday/Tuesday.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25337
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25337
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25337
    Brajesh Singh on in reply to: [Resolved] Not able to buy plugin #24464

    Hi Matt,
    Thank you.

    Please check your BuddyDev Profile page for the downloads.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25337
    Brajesh Singh on in reply to: Member Types Pro – Database Query #24462

    Hi Mike,
    Thank you.
    I have heard a lot of good things about that plugin for importing and migrating content.

    I am going to plan for allowing user’s member type export too as it can add a lot of value for us in the member types pro plugin.

    All the best with your current plan 🙂

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25337
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25337
    Brajesh Singh on in reply to: [Resolved] BP Moderation tools – conflict #24460

    Hi Vivek,
    Thank you for the patience. There was a bug with our geo-directory integration code. They have correctly fixed it(we missed to return the value). It will be part of our next update.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25337
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25337
    Brajesh Singh on in reply to: Member Types Pro – Database Query #24456

    Hi Mike
    you are correct in assuming the above though there are some issues.

    The object id could be a post id. Object id alone does not guarantee that it is for member type and a user.

    In order to guarantee a user’s member type, we need to do the following.

    1. Find all the term_taxonomy_id in term_taxonomy table where taxonomy=bp_member_type
    2. Now, filter this list by joining to term_relationships on tr.term_taxonomy_id in the above list and object_id = our user id.

    It will give us all the term_taxonomy_id for the user. Now, we need to find the terms for each of the term_taxonomy_id and use that.

    To be honest, a super easy approach will be to write a script that loops through the user and export userid or user_login(which ever does not change) and the member type for the user.

    The another script that reads through this list and sets the member types. I think this script might be very useful for the community and I will love to explore it in future.

    Regards
    Brajesh