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: [Resolved] Auto Join not working for new users #41897

    Hi,
    thank you.

    1. all the users who register on the site via any means will have access to BuddyPress/BuddyBoss. The reason is the users are part of WordPress core. The difference is how each plugin handles and what events are fired by each of them.

    Different plugins fire different events but once the user registers, they are all same.

    we have been using BuddyPress/BuddyBoss activation event which will be every different from Fluent Forms. since our plugin does not see that event, It does not update the data.

    We plan to look through fluent form registration process and check what event they fire on registration(after synchronization of BuddyPress profile Data). Once we find that, we will add that as a trigger in our plugin.

    yes, Please do share the access to development/staging server. Please use private reply here or our contact form for the same.

    Thank you
    Brajesh

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

    Please help me understand this:-

    Is the field mapping to BuddyPress available with Free version or Pro version? If it is available in pro version, Please provide access to it.

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486

    Hi,
    I am sorry but the plugin does not have any issue like this. It is probably a conflict.

    Please share the list of active themes and plugins. Also, are you using any code to filter groups list anywhere in BuddyPress?

    Please let me know and I will assist.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486

    Hi Nifty,
    Thank you.

    I do have access to the theme. Will do testing and get back to you in next 2 working days.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486

    Hi,
    Welcome to BuddyDev support forums.

    I am sorry, simply removing the redirect is not going to help much as there are 2 many other places where there will be checks for logged user when you submit the form.

    My suggestion will be to looking for an alternative to add support for BuddyPress Fields on user registration in the Dashboard->Users->add New page.

    There does not seem to be any plugin available for this and it is not feasible to achieve in few lines of code, so I will suggest an alternative).

    You should register the user from Dashboard->Users->add new and then go to dashboard->Users and edit the profile of that user. You will find the “Extended Profile” section. You can add the xprofile data there.

    Regards
    Brajesh

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

    Hi,
    by activation, I mean the action hook used by BuddyPress when it activates user account. Different plugins can use different hook. Since you are using the FF for registration, It is not calling BuddyPress’s activation hook(you can confirm with the original developers of FF).

    Coming back to your reply, I assume that the free Fluent Form plugin allows mapping of BuddyPress fields to form fields. If that’s the case, our team will test and make sure it works with Fluent Form Registration/Activation by day end tomorrow.

    Regards
    Brajesh

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

    Hi,
    Thank you for purchasing the plugin.

    The plugin triggers on BuddyPress Account Activation if you are using Xprofile fields and BuddyPress profile Update(not individual field update via programmatic means).

    From your details, It seems that Fluent Forms is updating BuddyPress fields.

    Does their free plugin allows settings up this? If yes, Please let me know and we will test and add support for it within 2 working days. If no, we will need access to the plugin to add support.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 25486
    Brajesh Singh on in reply to: Avatar position Buddypress #41874

    Hi Asmaa,
    Welcome to BuddyDev support forums.

    Can you please tell me which theme and template pack are you using?

    Thank you
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 25486

    Hi Daniel,
    Thank you for the question.
    yes, It is controlled by the Blog Categories templa file.

    We are using the following tag.

    
    <?php the_time() ?>
    

    Please change it to

    
    <?php the_time( 'F j Y' ); ?>
    

    in the bcg/posts.php and It will show the date instead.

    Regards
    Brajesh