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
  • Base Href Tag
  • Content IDs
  • Custom Menu / Header

Was this helpful?

  1. Talque Plugin

Configuration

Base Href Tag

The base href tag tells the plugin where it is located, and must match the path where it is served from. If your web server hosts the plugin at https://my-server.com/my-talque-plugin then the base href tag must be:

<base href="//">

To verify that the setting is correct, try opening the plugin and then reloading the browser. If the base href is correct then the plugin should reload at the same place.

Content IDs

There are two identifier that determine the content that is visible. First, the org id is the unique id of your network. The other id is the plugin configuration; In simple cases you have one plugin per network, so there is a unique config id. But in more complicated installations you could have the same network shown in two different plugins. These IDs are set as data attributes on the plugin root tag, where our plugin bootstraps:

<rli-tq-plugin-root
    data-org-id="DRl8NY32VVvIa2s0FYTx" 
    data-config-id="UABcnEgqzljwZf5qiGb3" 
    data-backend="https://www.talque.com">
</rli-tq-plugin-root>

Custom Menu / Header

Our template index.html file has a dummy header that you can replace with your own header, or a custom menu to link to other pages on your website:

<!-- replace this with your own header -->
<div class="border-box h-20 tw-flex tw-flex-none justify-center items-center justify-between px-24">
    ...
</div>
<!-- end replace -->
PreviousInstallation

Last updated 2 years ago

Was this helpful?