# Displaying Course Drip Release Dates

The latest versions of the following themes can now display the release date for dripped and scheduled course content in a tooltip that renders while hovering over the calendar icon shown alongside their titles:

* momentum\_product v7.0.2
* premier\_product v7.9.2

If you are developing a custom product theme and would like to offer this functionality as well, you can add the following

```
{% if category.drip_release_date %}
  <span class="drip-tooltip" data-tooltip="{{ category.drip_release_date | date: '%b %d, %Y' }}">
    <i class="fa fa-calendar"></i>
  </span>
{% else %}
  <i class="fa fa-calendar"></i>
{% endif %}
```

And ensure that you've added the following styles to your stylesheet

```
  .drip-tooltip {
    position: relative;
    display: inline-block;
    cursor: pointer;

    &::after {
      content: attr(data-tooltip);
      position: absolute;
      bottom: 100%;
      right: 35%;
      transform: translateX(35%);
      padding: 6px 10px;
      background: #30373d;
      color: #fff;
      font-size: 12px;
      white-space: nowrap;
      border-radius: 4px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.2s, visibility 0.2s;
      pointer-events: none;
      z-index: 999999;
      margin-bottom: 6px;
    }

    &:hover::after {
      opacity: 1;
      visibility: visible;
    }
  }
```

This will produce the desired tooltip

<figure><img src="/files/tn3Kk8UbXE5zSpky5OxR" alt=""><figcaption></figcaption></figure>


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://themes.kajabi.com/liquid/displaying-course-drip-release-dates.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
