In the file function.php from your theme
Before the ending php tag ?> if you have one
function check_the_image_on_post($item) {
if (empty($item['photos'])) {
osc_add_flash_error_message(__('Please add at least one image.', 'bender'));
$url = osc_item_post_url_in_category();
header("Location: $url");
exit();
}
}
osc_add_hook('pre_item_add', 'check_the_image_on_post');
function check_the_image_on_edit($item) {
if (empty($item['photos'])) {
osc_add_flash_error_message(__('Please add at least one image.', 'bender'));
$url = osc_item_edit_url();
header("Location: $url");
exit();
}
}
osc_add_hook('pre_item_edit', 'check_the_image_on_edit');