Is it possible for the countdown timer to show again after closing it and refreshing the page?
Hey there @DI_WU! Welcome to the Community ![]()
Here’s a script exactly for this purpose:
const WIDGET_ID = 'Add the widget ID';
window.addEventListener('beforeunload', () => {
window.localStorage.removeItem(
CountdownTimer.closed.${WIDGET_ID}
);
});
Please add your widget ID in brackets of the first line of the code, and then paste it to the Custom JS section of your Countdown timer.
Hope it helps ![]()