Hi,
I’m pretty new to coding with variables within klaviyo. I was wondering if it is possible to use the days_later filter on another date than today. In the documentation it always refer to today. But what if I receive a date in an event like an order date or something.
{% today "%Y-%m-%d" as today %} {{ today|days_later:5 }}
I would like to do somehting like
{% event|lookup:'$next_billing_date'|format_date_string|date:'Y-m-d' as today %} {{ today|days_later:5|format_date_string|date:'M d' }}
also when coding directly in a klaviyo block is there a way to prevent div, span and other formatting to keep modyfing the code.
Thank you!!