• Since the latest update of 5.2 with new security features the plugin has a conflict of some sort.

    Before 5.2 everything worked fine. However since 5.2 I can no longer save pages or posts with both your plugin active. If I disable your plugin everything works once again.

    Have you had this reported by others and do you think an update with a fix will be coming soon?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Aaron Landerkin

    (@alanderkin)

    Thanks for letting me know. This is the second report of a bug with this symptom, but the first one that is linking it to WP v5.2.

    If it is indeed the same bug that was already identified; then a fix is in place and will be uploaded in the next update which will be in the next week or two.

    In the meantime, the bug comes from jQuery namespacing. If you’d like to try it and not wait for the update, you can edit the seotoolset/templates/post-widget.php and replace the entire <script></script> block at the bottom with this:

    
    <script>
    (function(b, c, s, e, o){
      SEOToolSet.events.bind('post-widget');
    
      c('#ajax-post-meta-description[data-ajax-load]').each(SEOToolSet.events.elementAjaxLoad);
    
      function run() {
        if (c('[data-ajax-load]:visible').length < 1) {
          setTimeout(function(){ run(); }, 500);
        } else {
          SEOToolSet.events.bind('post-widget');
        }
      }
      run();
    })(document, jQuery);
    </script>
    
    Plugin Author Aaron Landerkin

    (@alanderkin)

    I believe this should be resolved with the latest update.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Plugin Conflict’ is closed to new replies.