К сожалению, такого плагина нет, если я скоро наткнусь на него я его закачаю
Try adding this code, they guarantee that at least 1 image will be added, I haven't tried it and I can't guarantee that it will work
oc-includes/osclass/itemAction.php
function wm_item_img_required($error, $item) {
if(empty($item['photos'])) {
$error .= _m("Atleast one image required.") . PHP_EOL;
}
return $error;
}
osc_add_filter('pre_item_add_error', 'wm_item_img_required');