edit the file includes/modules/pages/checkout_confirmation/header_php.php
Find around line 51:
PHP Code:if (DISPLAY_CONDITIONS_ON_CHECKOUT == 'true') {
if (!isset($_POST['conditions']) || ($_POST['conditions'] != '1')) {
$messageStack->add_session('checkout_payment', ERROR_CONDITIONS_NOT_ACCEPTED, 'error');
}
}
add this just below that:
of course you would need to define ERROR_DELIVERY_NOT_ACCEPTED for the text you want to be displayedPHP Code:if (DISPLAY_DELIVERY_ON_CHECKOUT == 'true') {
if (!isset($_POST['delivery']) || ($_POST['delivery'] != '1')) {
$messageStack->add_session('checkout_payment', ERROR_DELIVERY_NOT_ACCEPTED, 'error');
}
}



