Can the countdown timer reappear after refresh

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 :piñata:

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 :smiling_face: