How do I get this statement working so that if the post date is before today's date, it shows one thing. If it is after todays date, it shows another? I tried this below but it doesn't work. And yes, I did add a shortcode for [datetime] to toolset settings. It is simply this: return date(get_option('date_format'));
[wpv-conditional if="( '[types field='[wpv-post-date]' ][/types]' gt '[datetoday]' )"] Show this [/wpv-conditional]
[wpv-conditional if="( '[types field='[wpv-post-date]' ][/types]' lt '[datetoday]' )"] Show this instead [/wpv-conditional]
You can use the Views date functions such as TODAY() in the conditions. These generate timestamps, so to compare like with like you need the post date in timestamp format.
How do I do it so that if the field wpcf-note-date has not arrived yet (it is a custom calendar field), don't show the message yet? Only show it after that date.