• Resolved plexxy

    (@plexxy)


    hello!

    at “find by shortcode” tab i find all the shortcodes which are used but if i change to “setting” tab and want to disable one, i only have three to disable from the whole list … why is it like that?

    br

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author Scribit

    (@scribit)

    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

    Plugin Author Scribit

    (@scribit)

    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 ??

    Plugin Author Scribit

    (@scribit)

    Just fixed this issue (and add other useful functions) in the brand new 1.5 version.

    • This reply was modified 2 years, 5 months ago by Scribit.
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘cant disable shortcodes’ is closed to new replies.