We have recently refreshed our branding across our offerings and changed the names of our pricing plans. If you have signed up before Aug 9, 2021, please click Previous plans to view your applicable plans.
We assure you that this change will not impact your product experience, and no action is required on your part.

You can define your own variables using Liquid and assign desired values to them. There are no data types in place for you to worry about. These can be used to provide simple, readable names that can be easily comprehended when come across later.
Example:

{% assign helpdesk = 'Freshdesk' %}

{{ helpdesk }}


The statement above performs a straightforward assignment that displays “Freshdesk”. Yes - that’s about as creative as we’re willing to get on this one. You can also assign variables to be boolean, to be used with conditional statements later.


Next: Cycles