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 speakers
  • Filtering sponsors
  • Filtering exhibitors

Was this helpful?

  1. Javascript plugin
  2. Installation

Filters

You can constrain the content that is being displayed by adding certain require-...="..." attributes to the html snippet, for example

<div
    class="tq-talque-view"
    org-id="VDYRv7v7oaA2s432rwMg"
    view-id="IoKwbA39MxcntEocizXB"
    initial="lecture-list"
    require-tags="tag1,tag2">
</div>

will list only the lectures that are tagged with tag1 and tag2. Here, the tags are the internal codes for the tags, not the (potentially multiple) translations.

Filtering lectures

  • require-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.

  • require-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.

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

Filtering speakers

To display only a subset of the speakers, use require-badges="badge1,badge2". The internal codes of the badge categories can be seen when you type data.org.badgeLabels into the javascript console.

Filtering sponsors

To display only a subset of the sponsor categories, use require-sponsors="cat1,cat2". The internal codes of the sponsor categories can be seen when you type data.org.sponsorLabels into the javascript console.

Filtering exhibitors

To display only a subset of the exhibitor categories, use require-exhibitors="cat1,cat2". The internal codes of the exhibitor categories can be seen when you type data.org.vendorLabels into the javascript console.

PreviousInitial pageNextOptional settings

Last updated 2 years ago

Was this helpful?