Viewing 6 replies - 1 through 6 (of 6 total)
  • Same issue.

    Same issue here. I posted days ago with no answer yet. If it doesnt get fixed, it can simply be dequed.

    I’ve had the same issue. Also the colorbox Image textlabels appeared at the Top of the box instead of the bottom.

    I think the issue happens since the last larger update was done, where the fielditems in the options table of the wordpress database have been changed without deleting the old entries. I’ve uninstalled the plugin and deleted all Tableitems prefixed with “$flickr_photostream_” (older version) and “$fjgwpp_” (actual version). I used the plugin “WP Options Editor” to delete the items. After that i reinstalled the newest Version of the justified gallery plugin an reconfigured it. Now anything runs well.

    I have to correct myself. Reinstalling the plugin just helps for my colorbox textlabel problem but not the “deselect” prob. After i selected the colorbox item once, it’s not possible to unselect it anymore and the colorbox textlabels appears at the top of the box again.

    So i set the Option $fjgwpp_provideColorbox (and $fjgwpp_provideSwipebox) from 1 to 0 in the database manually. It is not possible to do this via the pluginfrontend.

    Made the following changes in flickr-justified-gallery-settings.php:

    Changed Lines 115-116 from

    $fjgwpp_provideColorbox_saved = fjgwpp_getOption('provideColorbox', $fjgwpp_provideColorbox_default);
    $fjgwpp_provideSwipebox_saved = fjgwpp_getOption('provideSwipebox', $fjgwpp_provideSwipebox_default);

    to

    $fjgwpp_provideColorbox_saved = (int)fjgwpp_getOption('provideColorbox', $fjgwpp_provideColorbox_default);
    $fjgwpp_provideSwipebox_saved = (int)fjgwpp_getOption('provideSwipebox', $fjgwpp_provideSwipebox_default);

    Lines 174 – 175

    if (isset($_POST["fjgwpp_provideColorbox"])) $fjgwpp_provideColorbox_saved = $_POST["fjgwpp_provideColorbox"];
    if (isset($_POST["fjgwpp_provideSwipebox"])) $fjgwpp_provideSwipebox_saved = $_POST["fjgwpp_provideSwipebox"];

    to

    if (isset($_POST["fjgwpp_provideColorbox"]))
         $fjgwpp_provideColorbox_saved = ((int)$_POST["fjgwpp_provideColorbox"] != 0) ? 1:0;
      else
         $fjgwpp_provideColorbox_saved = 0;
    
    if (isset($_POST["fjgwpp_provideSwipebox"]))
        $fjgwpp_provideSwipebox_saved = ((int) $_POST["fjgwpp_provideSwipebox"] !=0) ? 1:0;
      else
        $fjgwpp_provideSwipebox_saved = 0;

    Now it works…

    Plugin Author miro.mannino

    (@miromannino)

    Thank Cornelius and the other to post this issue.
    Thank Kai-R for the fix, this saved me some precious minutes of my life ??

    Sorry for the bug to everyone, it can unfortunately happens…
    This will be fixed in 3.3.6

    Bye

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Settings: Cannot deselect either lightbox’ is closed to new replies.