Viewing 1 replies (of 1 total)
  • Hello,
    I encounter the same issue here.

    The MIC settings don’t seem to be saved but after a quick lookup it appears they actually are. The problem is that saved settings are not properly caught and returned to MIC option page fields, therefore the default settings are displayed.

    In my case, I located the problem in “lib/ManualImageCropSettingsPage.php” on line 151 where “$sizesSettings” var get a boolean value.

    Here’s my temp fix:

    Replace:
    $sizesSettings = self::getSettings() || array();

    By:
    $sizesSettings = self::getSettings();

    Hope it helps!

Viewing 1 replies (of 1 total)

The topic ‘MIC Custom Settings Not Saving’ is closed to new replies.