Skip to content

Instantly share code, notes, and snippets.

@jasperf
Last active December 20, 2024 05:13
Show Gist options
  • Save jasperf/ee425d94ea551d9bd5bbfe7e0bd19a0f to your computer and use it in GitHub Desktop.
Save jasperf/ee425d94ea551d9bd5bbfe7e0bd19a0f to your computer and use it in GitHub Desktop.
Uncaught TypeError: Cannot read properties of undefined (reading 'timepicker')
at jquery-ui-timepicker-addon.min.js?ver=1.6.1:4:132
at jquery-ui-timepicker-addon.min.js?ver=1.6.1:4:85
at jquery-ui-timepicker-addon.min.js?ver=1.6.1:4:95Understand this errorAI
menu.min.js?ver=1.13.3:9 Uncaught TypeError: a.widget is not a function
at menu.min.js?ver=1.13.3:9:223
at menu.min.js?ver=1.13.3:9:178
at menu.min.js?ver=1.13.3:9:188Understand this errorAI
autocomplete.min.js?ver=1.13.3:9 Uncaught TypeError: o.widget is not a function
at autocomplete.min.js?ver=1.13.3:9:217
at autocomplete.min.js?ver=1.13.3:9:172
at autocomplete.min.js?ver=1.13.3:9:182Understand this errorAI
draggable.min.js?ver=1.13.3:9 Uncaught TypeError: Cannot read properties of undefined (reading 'mouse')
at draggable.min.js?ver=1.13.3:9:274
at draggable.min.js?ver=1.13.3:9:202
at draggable.min.js?ver=1.13.3:9:212Understand this errorAI
slider.min.js?ver=1.13.3:9 Uncaught TypeError: Cannot read properties of undefined (reading 'mouse')
at slider.min.js?ver=1.13.3:9:203
at slider.min.js?ver=1.13.3:9:134
at slider.min.js?ver=1.13.3:9:144Understand this errorAI
iris.min.js?ver=1.1.1:5 Uncaught TypeError: a.widget is not a function
at iris.min.js?ver=1.1.1:5:16749
at iris.min.js?ver=1.1.1:5:16827Understand this errorAI
color-picker.min.js?ver=6.7.1:2 Uncaught TypeError: i.widget is not a function
at color-picker.min.js?ver=6.7.1:2:35
at color-picker.min.js?ver=6.7.1:2:3443Understand this errorAI
load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,jquery-ui-core,jquery-ui-mouse,jquery-ui-sortable,moxiejs,plupload,jquery-ui-resizable&ver=6.7.1:2 Uncaught TypeError: l(...).sortable is not a function
at Object.init (postbox.min.js?ver=6.7.1:2:3686)
at Object.add_postbox_toggles (postbox.min.js?ver=6.7.1:2:2725)
at HTMLDocument.<anonymous> (post.min.js?ver=62504-20241121:2:4448)
at e (load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,jquery-ui-core,jquery-ui-mouse,jquery-ui-sortable,moxiejs,plupload,jquery-ui-resizable&ver=6.7.1:2:27028)
at load-scripts.php?c=1&load%5Bchunk_0%5D=jquery-core,jquery-migrate,utils,jquery-ui-core,jquery-ui-mouse,jquery-ui-sortable,moxiejs,plupload,jquery-ui-resizable&ver=6.7.1:2:27330Understand this errorAI
js?sensor=false&callback=cpm_set_map_flag:182 Geocoding Service: You must use an API key to authenticate each request to Google Maps Platform APIs. For additional information, please refer to http://g.co/dev/maps-no-account
_.Uj @ js?sensor=false&callback=cpm_set_map_flag:182Understand this errorAI
/wp-json/aioseo/v1/integration/semrush/keyphrases/:1
Failed to load resource: the server responded with a status of 400 ()Understand this errorAI
wp-plupload.min.js?ver=6.7.1:1 Uncaught ReferenceError: plupload is not defined
at new u (wp-plupload.min.js?ver=6.7.1:1:770)
at constructor.ready (media-views.min.js?ver=6.7.1:2:105840)
at p (backbone.min.js?ver=1.6.0:2:3644)
at backbone.min.js?ver=1.6.0:2:3497
at a (backbone.min.js?ver=1.6.0:2:692)
at constructor.trigger (backbone.min.js?ver=1.6.0:2:3380)
at Object.ready (wp-backbone.min.js?ver=6.7.1:2:1856)
at underscore.min.js?ver=1.13.7:2:10434
at I (underscore.min.js?ver=1.13.7:2:9565)
at Function.<anonymous> (underscore.min.js?ver=1.13.7:2:10335)Understand this errorAI
@jasperf
Copy link
Author

jasperf commented Dec 20, 2024

timepicker error is related to the use of it in parent theme base-hotel/assets/inc/timepicker/jquery-ui-timepicker-addon.js The error refers to file https://autentical.nl/wp-content/plugins/base-hotel/assets/inc/timepicker/jquery-ui-timepicker-addon.min.js?ver=1.6.1

It is loaded in base-hotel/fields/date_time_picker.php using

...
function input_admin_enqueue_scripts() {
		
// vars
$version = '1.6.1';
		
// script
wp_enqueue_script('acf-timepicker', acf_get_dir('assets/inc/timepicker/jquery-ui-timepicker-addon.min.js'), array('jquery-ui-datepicker'), $version);
		
		
// style
wp_enqueue_style('acf-timepicker', acf_get_dir('assets/inc/timepicker/jquery-ui-timepicker-addon.min.css'), '', $version);
}
..

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment