{%
# Example for ValidatorPlaceOrder
if(!$TermsAndConditionsCheck)
{
$_errorCode = 16; # Please read our General Terms and Conditions and confirm them by selecting the choice box.
AddError($_errorCode);
}
# Example for ValidatorCustomerShippingAddress
$_shippingAddress = GetCheckoutCustomerShippingAddressFromRequest();
if(strlen($_shippingAddress->FirstName) < 2
|| strlen($_shippingAddress->LastName) < 2)
{
$_errorCode = 39; #Please enter name and surname.
AddError($_errorCode);
}
%}
ValidatorShippingProfile
Short description
You can define checks for the shipping method in this template. This validator is called when the shipping method is submitted during the order process.
Template ValidatorShippingProfile
Variables
These variables are available in this container.
-
$ShippingProfile — Returns the shipping method.