Dear Abdul,
Try with this variation:
add_filter('wp_enqueue_scripts', 'cleanup_scripts', 11); function cleanup_scripts() { if (!is_admin()) { global $WP_Views; wp_dequeue_style( 'views-pagination-style' ); wp_dequeue_script( 'views-pagination-script' ); wp_dequeue_script( 'wpv-front-end-utils' ); wp_dequeue_style( 'wpv_render_css' ); wp_dequeue_script( 'jquery-ui-core' ); wp_dequeue_script( 'jquery-ui-datepicker' ); wp_dequeue_script( 'jquery-ui-datepicker-local' ); wp_dequeue_script( 'wpv-date-front-end-script' ); remove_action('wp_print_styles', array($WP_Views, 'add_render_css')); remove_action('wp_head', 'wpv_add_front_end_js'); } }
Please let me know if you are satisfied with my answer and if I can help you with any other questions you might have.
Regards,
Caridad