talque
  • External integrations for talque
  • JSON API (readonly)
    • General
      • Locales and Text
    • Organization
      • Read
    • Lecture
      • List
      • Read
      • Files
      • Authorization
    • Speaker
      • List
      • Read
      • Authorization
    • Participants
    • Vendors
      • List
      • Read
      • Authorization
    • Room
      • List
      • Read
    • Enumerations
      • Locale
  • Deep links
    • General
    • Organization
    • Profile links
    • Lecture links
    • Partner links
    • Post links
    • Map links
    • Video rooms
  • Webhooks
    • General
    • Authentication
    • File upload
    • Users
    • Invites
    • Tickets
    • Vendors
      • Create
      • Update
      • Delete
    • COMING SOON: Announcements
    • COMING SOON: Lectures
    • Map Data
      • Map layer
      • Map features
      • Update references
  • COMING SOON: Chat Bots
  • Wordpress Plugin
    • Installation
    • Pages
    • Shortcodes
      • Filters
      • Optional settings
    • Routing
    • Configuration
  • Javascript plugin
    • Introduction
    • Installation
      • Initial page
      • Filters
      • Optional settings
    • Routing
    • Configuration
  • Single Sign-On
    • OAuth2 Login
    • Website data
    • OAuth2 Flow
      • Request an Authorization Code
      • Exchange for Access Token
      • Authorized Requests
  • SELF-SERVICE LINKS
    • Event Ticket Token
  • Old Wordpress Plugin
    • Download
    • Pages
    • Shortcodes
    • Filter Options
    • Style Options
  • Old Javascript Plugin
    • Introduction
    • Routing
    • Installation
  • Troubleshooting
    • Firewall Configuration
  • Talque Plugin
    • Download
    • Installation
    • Configuration
Powered by GitBook
On this page
  • Filtering lectures
  • Filtering Sponsors
  • Filtering Exhibitors
  • Referencing Historic Events

Was this helpful?

  1. Wordpress Plugin
  2. Shortcodes

Filters

Filtering lectures

The shortcodes that display a collection of lectures accept further arguments to narrow down the lectures to a subset. These are

  • tags="tag1,tag2" where the tag codes are the internal codes for the lecture tags. Type data.org.tagLabels in the javascript console for the mapping to their translated label.

  • formats="format1, format2" where the format codes are the internal codes for the lecture formats. Type data.org.formatLabels in the javascript console for the mapping to their translated label.

  • topics="topic1, topic2" where the topic codes are the internal codes for the lecture topics

For example, the complete shortcode would look like

[talque-lecture-list tags="xyz"]

The quotation marks in WP shortcodes must be the normal ASCII (straight) quotes, and not the left/right quotation marks. If you use the wrong kind of quotation marks then wordpress will ignore the argument. For example, this does not work: [talque-lecture-list tags=“xyz“]

Filtering Sponsors

To display only a subset of the sponsor categories, use

[talque-sponsor-grid sponsors="cat1,cat2"]

The internal codes of the sponsor categories can be seen when you type data.org.vendorLabels into the javascript console.

Filtering Exhibitors

To display only a subset of the exhibitor categories, use

[talque-exhibitors-grid exhibitors="cat1,cat2"]

The internal codes of the exhibitor categories can be seen when you type data.org.exhibitorLabels into the javascript console.

Referencing Historic Events

The event for which the speaker/lecture/... data is displayed is determined by its organization ID, which you set in the Wordpress admin interface. However, you can override this setting in a shortcode in order to display last year's speakers, for example. All shortcodes accept an optional org-id="..."argument, so for example

[talque-speaker-grid org-id="xyz123"]

will display the speakers from the event whose id is xyz123.

PreviousShortcodesNextOptional settings

Last updated 4 years ago

Was this helpful?