Custom templates | Community
Skip to main content

Custom templates

  • January 30, 2025
  • 1 reply
  • 0 views

Matthew14

Can I create a custom Help Center page template and insert a form dropdown for a different brand?

1 reply

Elaine14
  • February 28, 2025
Hi Matthew,
 
Yes, you can create a custom Help Center page template and insert a form dropdown for a different brand. This allows you to tailor the user experience based on the specific needs of that brand.
 
Use the Liquid markup to insert the dropdown. For a different brand, you may need to reference the specific form using the brand’s ID. The Liquid syntax typically looks like this:
<select name="form">
{% for form in forms %}
<option value="{{ form.id }}">{{ form.name }}</option>
{% endfor %}
</select>