Kai-R
Forum Replies Created
-
Forum: Plugins
In reply to: [Flickr Justified Gallery] "undefined" showing in imageSame issue here. I’am also wondering, why a scrollbar will be shown since one of the lase updates.
Forum: Plugins
In reply to: [Flickr Justified Gallery] Settings: Cannot deselect either lightboxMade 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…
Forum: Plugins
In reply to: [Flickr Justified Gallery] Settings: Cannot deselect either lightboxI 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.
Forum: Plugins
In reply to: [Flickr Justified Gallery] Settings: Cannot deselect either lightboxI’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.