Post.php edit page categories broken
-
Hello, your plugin appears to be breaking the Posts page. It has bad jquery code causing the checkboxes for categories to not function (it checks all of them by force), and when saved none of the checkbox states are passed to the form post.
All around bad!wp-content/plugins/responsive-pricing-table/assets/js/admin.js?ver=1.2.0
~line 65. loops over each input checkbox, and checks it.
Line in loop reads
$(this).prop('checked', true);
, which 100% of time checks an input box. So I believe jquery selector is incorrect or somehow triggering on the post page.See video as I step through with debugger (trigger attribute mod breakpoint, when click Update button on any post page, and in call stack, your plugin executes above mentioned code), which shows it checking the box via javascript included by this plugin
- The topic ‘Post.php edit page categories broken’ is closed to new replies.