Link Search Menu Expand Document

Company

object

Company is a global object, meaning it will always be accessible on any Liquid template.


Attributes

company.authors

array of Authors

An array of the company’s authors.

Image

The company’s logo as an image. The logo is set within Settings > Your Brand.

company.biographies

array of Contents

An array of the company’s biographies.

company.booking_fee_name

string

The custom booking fee name, which can be overridden. To enable this feature, please reach out to our support team at support@easol.com. The default booking fee name is ‘Booking Fee’.

company.countries

array of strings

An array of the names of countries with products. e.g. ["Canada", "United Kingdom"]

company.facebook_username

string

The Facebook username set within My Site > Social.

company.id

string

The id of the company. String representation of Uuid format.

company.instagram_username

string

The Instagram username set within My Site > Social.

Image

The company’s wordmark logo as an image. The logo is set within Settings > Your Brand.

company.name

string

The name of the company.

company.organisation

Organisation

The company’s organisation.

Note: Not all companies have an organisation.

company.posts

array of Blog posts

An array of the company’s published blog posts, ordered by the most recently published first.

company.products

array of Products

An array of the company’s published products excluding any private products. e.g.

{% for product in company.products %}
    {{ product.name }}
{% endfor %}

company.seatsio_public_key

string

The company’s public seats.io workspace key.

company.series

array of Series

An array of all the company’s series.

company.subdomain

string

The subdomain of the company.

company.time_zone_identifier

string

The company’s timezone identifier (e.g., "America/New_York", "Europe/Madrid", or "UTC").

This is useful when working with dates stored with timezone offsets in site builder custom fields. When dates are selected in datepickers, they are stored with the company’s timezone offset applied. Use this attribute along with time_zone_offset to correctly interpret and display dates in Liquid templates.

company.time_zone_offset

integer

The company’s UTC offset in seconds, accounting for daylight saving time (DST).

This value changes throughout the year for timezones that observe DST. For example:

  • Eastern Standard Time (EST): -18000 seconds (UTC-5)
  • Eastern Daylight Time (EDT): -14400 seconds (UTC-4)
  • Central European Time (CET): 3600 seconds (UTC+1)
  • Central European Summer Time (CEST): 7200 seconds (UTC+2)
  • UTC: 0 seconds

Use this along with time_zone_identifier when working with dates from site builder custom fields to ensure dates are displayed correctly, especially for companies in timezones behind GMT where dates might otherwise shift to the previous day.

company.twitter_username

string

The Twitter username set within My Site > Social.