Usage
nebula.createCookie(name, value, days)
Parameters
name
(Required) (String) The name of the cookie
Default: None
value
(Required) (String) The value of the cookie
Default: None
days
(Optional) (Integer) The number of days before expiration
Default: 3650
Source File
Located in /assets/js/modules/utilities.js on line 610.
No Hooks
This function does not have any filters or actions available. Request one?nebula.createCookie = function(name, value, days = 3650){ //Reduce the default days in 2027 to lower than 10 years (and each year thereafter)
let date = new Date();
date.setTime(date.getTime()+(days*24*60*60*1000));
let expires = '; expires=' + date.toUTCString(); //Note: Do not let this cookie expire past 2038 or it instantly expires. http://en.wikipedia.org/wiki/Year_2038_problem
document.cookie = name + '=' + value + expires + '; path=/;SameSite=Lax;';
};
Override
To override or disable this JavaScript function, simply redeclare it with the exact same function name. Remember: Some functionality is conditionally loaded via dynamic imports, so if your function is not overriding properly, try listening for a DOM event (described below).
For non-module import functions:
nebula.createCookie = function(name, value, days){
//Write your own code here, leave it blank, or return false.
}
For dynamically imported module function overrides:
jQuery(window).on('load', function(){
nebula.createCookie = function(name, value, days){
//Write your own code here, leave it blank, or return false.
}
});
Custom Nebula DOM events do also exist, so you could also try the following if the Window Load listener does not work:
jQuery(document).on('nebula_module_loaded', function(module){
//Note that the module variable is also available to know which module specifically was imported
if ( typeof nebula.createCookie === 'function' ){
nebula.createCookie = function(name, value, days){
//Write your own code here, leave it blank, or return false.
}
}
});