hard to read that… we really wanted to see a couple lines of code around each one…
so… if you see the following lines (anything close since winging it)
wp_deregister_script(‘jquery’);
wp_deregister_script(‘jquery-ui’);
you will want to comment them out in addition to the
wp_register_script(‘jquery’……
wp_register_script(‘jquery-ui…..
and instead just have
wp_enqueue_script(‘jquery’);
wp_enqueue_script(‘jquery-ui-core’);
wp_enqueue_script(‘jquery-ui-widget’);