Use TicketingCiné Custom Templates and Fields

Jeero can start with a simple TicketingCiné import: title, description, date, location, image, and ticket link. After that first sync works, custom templates and fields help make imported events match the WordPress theme more closely.

Use this when you want to:

  • Change imported event titles, descriptions, excerpts, or calendar-specific fields.
  • Save ticketing data into WordPress fields your theme already uses.
  • Add subtitles, practical info, venue details, prices, or other structured data to event pages.
  • Keep the first import simple while still giving the theme richer data later.

Start After the First Sync

Do not start here before events are importing correctly.

First confirm that Jeero can connect to the ticketing platform, create events in WordPress, and send visitors to the right ticket page. Once that path works, custom templates and fields can improve the event page without changing the ticketing connection itself.

What Jeero Makes Available

Jeero passes common event values into Twig templates, including:

  • title
  • description
  • start
  • end
  • venue
  • categories
  • tickets_url
  • status
  • prices

TicketingCiné also provides platform-specific values. Jeero can use the fields below in custom templates and custom fields.

Those extra values are available directly by their field name in Twig. If Jeero receives a field called director, use:

{{ director }}

Do not use:

{{ custom.director }}

Custom Templates vs Custom Fields

Jeero uses custom templates in two related ways.

Post field templates change the WordPress event fields Jeero imports. These include title, content, and excerpt, plus calendar-specific fields like a venue or location field. Use these when you want to change the main imported event content.

Custom fields write a rendered template into a WordPress custom field. Use these when your theme, page builder, custom block, or calendar plugin expects a specific post meta field.

A custom field has two parts:

  • Name: the WordPress custom field key Jeero should write.
  • Template: the Twig template Jeero should render for that field.

Example: Save a Subtitle as a WordPress Field

If your ticketing platform provides a field such as director and your theme expects a WordPress field called event_director, add a custom field like this:

Name: event_director
Template: {{ director }}

On import, Jeero renders the template and saves the result to the WordPress event as the event_director custom field.

You can use the same pattern for any TicketingCiné field from the table below:

Name: event_extra_info
Template: {{ actors }}

Or combine values:

Name: event_teaser
Template: {% if director %}{{ director }}{% else %}{{ title }}{% endif %}

Only use field names that your WordPress theme or plugin actually reads. Creating a custom field does not automatically make it visible on the event page.

Available TicketingCiné Fields

These field names come from the current TicketingCiné adapter code:

Field What it means Twig example
director Director {{ director }}
actors Actors {{ actors }}
release_date Release date (YYYYMMDD) {{ release_date }}
trailer_url Trailer URL {{ trailer_url }}
certification_id Certification ID {{ certification_id }}
duration Duration (in minutes) {{ duration }}
country Country of origin {{ country }}
version Movie version (eg. VF or VO) {{ version }}

Good First Improvements

Start with one visible improvement:

  • Add a subtitle below the event title.
  • Save doors-open time into a field your theme already displays.
  • Add practical information to a consistent event-page section.
  • Include venue city in a location field.
  • Add price or status information to the event content.

Avoid changing every field at once. It is easier to verify the import when each change has a clear purpose.

Check the Result

After adding a custom template or field, import or update one event and check:

  • The event still imports successfully.
  • The field value is present in WordPress.
  • The public event page shows the value where expected.
  • The template still behaves well when the ticketing field is empty.

If the field is saved in WordPress but not visible on the public page, the next step is usually a theme or template change, not another import setting.

When to Ask for Help

Send me the WordPress event page, the ticketing link, the field you want to show, and the place where it should appear. If you know the custom field key your theme expects, include that too.

I can help decide whether this needs a post field template, a custom field, category mapping, or a small theme change.

Is your ticketing solution missing?

Please contact me so I can add your ticketing solution too.