Lo resolví temporalmente sumando una linea en el css del theme,
fieldset#ticket_checkout_fieldset
min-width: fit-content
Espero sirva a alguno.
Hi there, I have just updated my sites to WP 3.2.1, I found several known issues:
– Quick Edit won’t work
– Insert Image does nothing
– etc
I have found the solution by adding this to my functions.php
if (!is_admin()) {
wp_enqueue_script('jqueryTools', 'http://cdn.jquerytools.org/1.2.5/full/jquery.tools.min.js');
}
It seems that jQuery Tools overrides some functions in WordPress and it breaks some features in the admin area.
Hope this fix helps somebody, it did for me.