Some hours ago I updated Types and now I'm experiencing some problems with a concrete View
In this page: hidden link there are a table than some hours ago was ordered by hour and also you can sort by the different fields (this was created with the plugin tablesorter) and also filter by field (created with the plugin Views), but now anything of this is working. Could be this problems related with the updating?
Actually there are 2 jQuery Date Picker scripts are being enqueued on that page, which might be causing this issue. Can you please try following code in your theme's functions.php file? And see if it helps:
add_action('wp_print_scripts','dequeue_additional_scripts', 100);
function dequeue_additional_scripts() {
wp_dequeue_script( 'jquery-ui-datepicker' );
}
Please add this to the end of your theme's functions.php file.
Please let me know if it works or if I can help you with anything related.