New Ad post Error
Sorry, we don't have any listings with that ID
function check_location_not_empty() {
$messages = array();
$city_required = true;
if($city_required && Params::getParam('cityId') == '' && Params::getParam('city') == '') {
$messages[] = __('City is required!', 'theme');
}
if(count($messages) > 0) {
foreach($messages as $m) {
osc_add_flash_error_message($m);
}
header('Location:' . osc_item_edit_url());
exit;
}
}
osc_add_hook('pre_item_post', 'check_location_not_empty', 1);
function check_post_location_not_empty() {
$messages = array();
$city_required = true;
if($city_required && Params::getParam('cityId') == '' && Params::getParam('city') == '') {
$messages[] = __('City is required!', 'theme');
}
if(count($messages) > 0) {
foreach($messages as $m) {
osc_add_flash_error_message($m);
}
header('Location:' . osc_item_post_url());
exit;
}
}
osc_add_hook('pre_item_post', 'check_post_location_not_empty', 1);