We will be replacing the older version of Freshdesk with the new Mint experience on January 31, 2019. All your data and configurations will remain intact. Switching back to the old Freshdesk will not be possible. To read about this feature on Freshdesk Mint, refer to this article instead
This feature is currently not available on Freshdesk Mint.
This feature is not available on the old Freshdesk.
Freshdesk
✖Sprout ✖Blossom ✖Garden EstateForest
Freshdesk
✖Free ✖Growth ProEnterprise
Freshdesk Omni (formerly CSS)
✖Growth ProEnterprise
Displaying plans
If you signed up before Aug 9, 2021, please click Previous plans to view your applicable plans.
You can iterate through HTML or liquid code by using the For loop. Loops are especially useful for things like running through and displaying all the solutions under a specific folder.
Syntax:
{% for item in array %}<!-- Do something with each item -->{% endfor %}
You can also limit the number of iterations by using the limit parameter.
{% for folder in category.folders limit: 6 %}
<!-- Just show the first 6 folders -->
{% endfor %}
There are times when you want to start looping from the second, fifth or the n’th item in your list. You can do this using the offset parameter.