It appears the theme is utilizing the $ variable for jQuery and not handling it correctly, see here: https://premium.wpmudev.org/blog/adding-jquery-scripts-wordpress/.
Maybe forward this link so they can fix it on their end.
Here is a fix you will have to do now and every time you update your theme:
Navigate to your wordpress directory
Navigate to \wp-content\themes\videopro\admin\assets\js\admin_template.js
Do a find and replace:
find – jQuery(document).ready(function()
replace – jQuery(document).ready(function($)
Or just add the $ variable to the jQuery(document).ready handler parameters on line 1, 189, and 306.
We can’t guarantee this fix does not break anything, but everything seems to be working okay after making this change on our end.
Cheers,
Nomiddleman Crypto