Viewing 5 replies - 1 through 5 (of 5 total)
  • I have also had the same problem, both with the Cimp User extra fields and with my own plugin which I am integrating with AutoChimp. It seems to occasionally work in my environment (WP 3.5.2 and PHP 5.3.27) but often does not.

    Now i am a newbie but i suspect the code in autochimp-plugins.php SaveSettings() as it seems to only save the settings if they are already set (GetUsePlugin() = true)(see code below).
    I hacked it by returning ‘1’ in GetUsePlugin – in your case it would be in plugins\autochimp\plugins\SyncBuddyPress.php

    Hope this helps
    Al
    public function SaveSettings()
    {
    $plugins = $this->GetPluginClasses( $this->GetType() );
    foreach ( $plugins as $plugin )
    {
    if ( $plugin::GetInstalled()&& $plugin::GetUsePlugin() )
    {
    $p = new $plugin;
    $p->SaveSettings();
    }
    }
    }

    Plugin Author WandererLLC

    (@wandererllc)

    This will be fixed in 2.13. Let me know if you still have problems.

    Thread Starter luiscmas

    (@luiscmas)

    I’m now using 2.02 version without errors.

    @bushal, thank you for your suggestion.

    @wandererllc for your info i loaded up 2.13 and tried to toggle the Sync option (under the Plugins Tab of AutoChimp settings) – As before it allows me to uncheck it correctly but wont allow me to check it again. The code i mentioned above does not seem to have changed (and i dont understand how it could ever have worked) as it seems to only save the settings if the sync is on.
    Cheers
    Al

    I am on 2.13 and having the same problem @luiscmas had – checkbox is not staying checked and the fields are not syncing.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Version 2.12 can't activate Buddypress Sync’ is closed to new replies.