Does anyone know why this conditional message does not work?
Example:
Example:
Code:
<!-- Code to display conditional message between mon - sat --> %IF((s.dyn_tm_wday LT 3) OR (s.dyn_tm_wday GT 7))% <!-- Code to display conditional message between 12:00 pm -3:00 pm ET --> %IF((s.dyn_time_t LT 15) OR (s.dyn_time_t GT 24))% conditional message text here %ELSE% alternate conditional message text here %IFEND%
Comment