• Resolved Norm Sash

    (@normsash)


    Hi,
    I have WP Fusion Lite. I have the “Login Tags Sync” option checked on. Initial sync with AC performed and I see the AC contact tags in the user’s WP profile.

    I change a tag in AC for the contact. As expected, the tag doesn’t sync to WP because I have the Lite version.

    I log the user out + in. At this point I would expect the tags to update because “Login Tags Sync” is checked on. But it doesn’t the WP user record is not updated with the changed (added) tag.

    I click on “Resync Tags” when editing the WP user. As expected, the tags update with the latest from AC tags.

    Is there something that I’m missing or is this a bug that needs to be looked into?

    Thanks,
    Norm

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author verygoodplugins

    (@verygoodplugins)

    Hey @normsash,

    That is how it’s supposed to work. My hunch is that a redirect might be getting in the way. Some plugins are quite aggressive with how they do login redirects, and if the redirect happens before WP Fusion gets a chance to run then the tags won’t be loaded.

    You should be able to test that by logging in via the default /wp-login.php page. That’s less likely to get redirected.

    You could also try this code, in your functions.php file:

    if function_exists( 'wp_fusion' ) {
         add_action( 'wp_login', array( wp_fusion()->user, 'login' ), 1, 2 );
    }

    That will cause the tags to be loaded earlier in the login process.

    Thread Starter Norm Sash

    (@normsash)

    Great… thanks. I’ll give that a try and do some investigation to see if another plugin might be causing the sync to fail.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Login Tags Sync setting doesn’t seem to work’ is closed to new replies.