Hello @plexxy and thanks for reporting.
I’ve just reproduced your issue in one of my testing site.
I will fix it as soon as possible.
Keep in touch on this thread.
Thread Starter
plexxy
(@plexxy)
thank you very much for fast reply!
i tested in on other sites too (with other themes) and disabled all other plugins … doesnt work… seems like there is somekind of bug 🙂
thanks again for fast answer!
br
Thanks to you for the bug report!
It is just a graphic bug. You can temporarily fix it editing plugin file “shortcodes-finder/admin/js/shortcodes-finder-admin.js” and replacing original set_settings_existing_shortcodes_state function with this code:
function set_settings_existing_shortcodes_state(el) {
if (el.checked) {
var div = $('#sf_settings_existing_shortcodes');
div.css('height', 'auto');
var autoHeight = div.height();
div.height(0).animate({
height: autoHeight
}, 1000);
div.stop(true, false).animate({
height: autoHeight
}, 'fast');
} else {
$('#sf_settings_existing_shortcodes').stop(true, false).animate({
height: '0'
}, 'fast');
}
}
I will insert fixed function in the new 1.5 version.
If you like the plugin, I would really appreciate your review. Even with some useful advice 🙂
Just fixed this issue (and add other useful functions) in the brand new 1.5 version.
-
This reply was modified 3 years, 11 months ago by
Scribit.