Jimo Help Center
Using Jimo
Using Jimo
  • Introduction to Jimo
    • Welcome!
    • What is Jimo?
  • Getting started
    • Installing Jimo
    • Extension
    • Initial Setup
    • Designing Your First Experience
  • Experiences
    • Tours & Modals
      • Components
    • Surveys
      • Components
    • Banners
      • Components
    • Hints
      • Components
    • Checklists
      • Components
      • Behavior
    • Resource Center
      • Components
    • Changelog
      • Dashboard
        • Overview
        • Analytics
      • Changelog
        • Changelog Builder
        • Changelog Components
        • Changelog Navigator
        • Positionning (Trigger)
        • Changelog Preview
      • Posts
        • Post Builder
        • Post Components
        • Post Navigation
        • Multiple Languages
        • Post Preview
  • Design and manage experiences
    • Dashboard
    • Spaces
    • Builders
      • Flow Builder
      • Content Builder
      • In-app Builder
    • Navigator
    • Triggers & Conditions
      • Steps Triggers
      • Conditions
    • Theme
    • Multiple Languages
    • Positioning
    • Preview
  • Target & publish experiences
    • Overview
    • Trigger on the right spot (Show on)
    • Target specific URLs/Domains (Where)
    • Target right people (Who)
    • Trigger at the right time (When)
      • Planning Your Experience
      • Rate Limiting - Prevent overwhelming users
    • Increase visibility (Boost)
    • Mesure outcomes (Goal)
  • Monitor and analyze user data
    • Analytics
    • Users & Segments
      • Users
      • Segments
      • Import
      • Survey responses segmentation
    • Success Tracker
      • Overview
      • Trackers
      • Events
  • Admin & Settings
    • Project management
    • General Settings
    • Installation
    • Team Management
    • Environments
    • Plan and Billing
    • Notifications and Account Settings
    • MAU (Monthly Active Users)
  • Integrations
    • Integration Setup
    • Events for Analytics Integrations
    • Segment.io
    • HubSpot
    • Salesforce
    • Maze
    • Amplitude
    • PostHog
    • Mixpanel
    • Heap
    • Figma
    • Calendly, Google Calendar, Zcal
    • Intercom
    • Invision
    • Zapier
    • Slack
    • Crisp
    • Server-Side Events
    • Webhooks
Powered by GitBook
On this page
  • Trigger Options
  • Disable (by default)
  • Float
  • Pulsating
  • Side Badge
  • Custom

Was this helpful?

  1. Experiences
  2. Changelog
  3. Changelog

Positionning (Trigger)

The Trigger Options allow you to control how and where your changelog is displayed, ensuring it catches your users' attention at the right moment. Here’s a detailed guide to the available triggers.

PreviousChangelog NavigatorNextChangelog Preview

Last updated 10 months ago

Was this helpful?

Trigger Options

Each trigger option is designed to accommodate different styles and levels of visibility, allowing you to match user interaction with the aesthetic and functional flow of your platform.

By choosing the appropriate trigger and customizing it to your needs, you can ensure that your changelog effectively engages your users.

Disable (by default)

Temporarily suspend access to the changelog without removing the integration.

  • Usage:

    • Ideal for when you need to temporarily disable the changelog.

    • To re-enable, select another trigger option.

  • Steps:

    1. Select Disable from the Type dropdown in the General section.

    2. The changelog will not be displayed until a different trigger is selected.

Once you have published your first post, you can quickly disable the changelog or set it back to your latest selected trigger directly in the Changelog Hub.

Float

Display the changelog as an omnipresent floating icon in the bottom right corner.

  • Features: Ensures the changelog is always within reach.

  • Steps:

    1. Select Float from the Type dropdown.

    2. Customize the floating icon text if desired.

Parameters:

General:

  • Type: Float

  • Title: Customize the title of the float badge. (A)

Style:

  • Shadow: Add or remove shadow. (B)

  • Radius: Adjust the corner radius. (C)

  • Background: Set the background color. (D)

Text:

  • Color: Change the text color. (E)

  • Font Family: Select the font family. (F)

Icon:

  • Color: Change the icon color. (G)

  • Icon: Choose an icon from the or upload a one. (H)

Pulsating

Draw attention to the changelog with a pulsating effect.

  • Features: Requires attachment to an element on your website.

  • Usage:

    • Transform the bound element into an interactive component that opens the widget.

  • Steps:

    1. Select Pulsating from the Type dropdown.

    2. Copy the provided snippet and paste it into your website’s HTML to bind the pulsating effect to an element.

Parameters:

  • HTML Snippet:

    htmlCopier le code<div class="jimo-widget">What's new?</div>

Side Badge

Use a side badge for a discreet yet accessible entry point to the changelog.

  • Steps:

    1. Select Side Badge from the Type dropdown.

    2. Customize the badge text if needed.

Parameters:

General:

  • Type: Side Badge

  • Title: Customize the title of the side badge. (A)

Style:

  • Shadow: Add or remove . (B)

  • Radius: Adjust the corner radius. (C)

  • Background: Set the background color. (D)

Text:

  • Color: Change the text color. (E)

  • Font Family: Select the font family. (F)

Custom

Fully tailor the trigger, embedding it seamlessly into your site’s design schema.

  • Usage: Requires knowledge of HTML/JavaScript and access to your website’s source code.

  • Steps:

    1. Select Custom from the Type dropdown.

    2. Create the trigger element in your HTML (e.g., a button).

    3. Set up a click listener to open the widget when the element is clicked.

Example:

htmlCopier le code<button id="my_custom_trigger">What's new?</button>
<script>
  const myButton = document.getElementById("my_custom_trigger");
  myButton.addEventListener("click", function() {
    window.jimo.push(["do", "widget:open"]);
  });
</script>

Each trigger option is designed to accommodate different styles and levels of visibility, allowing you to match user interaction with the aesthetic and functional flow of your platform.

We offer a set of methods that allows you to have a more advanced usage of Jimo (set user attributes, listen to widget opening and closing, hide trigger, etc.). Your tech team might be interested. You can find all the methods in our .

SDK documentation
Trigger
Options
Disable
Disable quick access
Floating icon
Float parameters
Pulsating example
Pulsating Parameters
Side badge parameters
Button example
Custom Trigger Option