i managed t solve this by editing the index.php file of the plugin at line 61 , deleting this load_scripts();
for me that solved the problem
I managed to solve this by editing /wp-content/plugins/custom-post-view-generator/index.php like this at line 61:
function cpvg_load_admin_scripts(){
wp_enqueue_script(‘jquery-ui’);
wp_enqueue_script(‘jquery-ui-draggable’);
wp_enqueue_script(‘jquery-ui-droppable’);
wp_enqueue_script(‘jquery-ui-sortable’);
wp_enqueue_script(‘jquery-ui-dialog’);
}
as u see I was cutting
load_scripts();
on line 61; not sure if this will affect other things, but for now it’s working!