Wow, Thu, 31-Dec-2020 is a long way off, 13 years + a few months, etc. In theory, you could do that though by setting this variable in the interstitial.js file (near the beginning) like so:
Code:
//2) display freqency: ["frequency_type", "frequency_value"]
displayfrequency: ["cookie", "1"],
and editing (near the end) this portion of its code (changes/additions red):
Code:
function setCookie(name, value, days){
var expireDate = new Date(2020, 11, 30) //new Date(year, month, date-1)
//set "expstring" to either an explicit date (past or future)
if (typeof days!="undefined"){ //if set persistent cookie
var expstring=expireDate.setDate(expireDate.getDate()+parseInt(days))
document.cookie = name+"="+value+"; expires="+expireDate.toGMTString()+"; "+interstitialBox.cookiesetting[1]
}
else //else if this is a session only cookie setting
document.cookie = name+"="+value+"; "+interstitialBox.cookiesetting[1]
}
But, this may interact oddly with some of the other code causing the script to think that you are always changing the expiration period and thus displaying the box every day or even every time. If that happens, it would be easier to just set a long period of expiration in the first part:
Code:
//2) display freqency: ["frequency_type", "frequency_value"]
displayfrequency: ["cookie", (365*13).toString(10)],
and leave the rest of the code alone. Then, when you get to Thu, 31-Dec-2020 edit the file again, if desired.
Bookmarks