Remove after images

You can try this way

function filter_ptags_on_images($content) {
    $content = str_replace( "><p></p>", "", $content );
}
add_filter('the_content', 'filter_ptags_on_images');

Let it give a try