Hi Rob,
There is a simple solution to this problem. In places where you enqueue these files add plugin version parameter. For example replace:
wp_enqueue_script( 'glt-load-toolbar', plugins_url('js/load-toolbar.js',__FILE__), array('jquery'));
to
wp_enqueue_script( 'glt-load-toolbar', plugins_url('js/load-toolbar.js',__FILE__), array('jquery'), PLUGIN_VER);
Then you will be 100% sure that correct files are loaded after plugin update.
-
This reply was modified 7 years, 11 months ago by tbakula92.