Hi,
Can you try to add the code below to the functions.php of your childtheme.
add_action( 'wp_enqueue_scripts', 'sf_remove_pretty_photo_styles_and_scripts', 99 );
function sf_remove_pretty_photo_styles_and_scripts(){
wp_deregister_script( 'sf-prettyPhoto' );
wp_dequeue_script( 'sf-prettyPhoto' );
}
-Rui