Is it possible to configure Featherlight popups to show only once per user?

116 Views Asked by At

Looking to configure featherlight.js to show only once per user (ie. if user loads the page again they will not see it). With thanks, Cas.

1

There are 1 best solutions below

1
On

Colleague found a solution...

welcomeLightbox: function () {
    'use strict';
    if ($.cookie('welcomeLightboxShown') == null) {
      $.featherlight($('#mylightbox'), {});
    }
    $('.featherlight-close').click(function() {
      // $.cookie('welcomeLightboxShown', 'true', { path: '/' });
      $.cookie('welcomeLightboxShown', 'true', { expires: 365, path: '/' });
    });
  },