GET RID OF OM-GLOBAL COOKIES
function deleteOmCookie() { document.cookie = “omGlobalInteractionCookie=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/;”; } deleteOmCookie();Continue reading
Join 2,000,000+ Professionals who use WPCode to Future-Proof Their Websites!
function deleteOmCookie() { document.cookie = “omGlobalInteractionCookie=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/;”; } deleteOmCookie();Continue reading
add_action( ‘jet-form-builder/media-field/before-upload’, /** * Fired before JetFormBuilder uploads a file for a Media field. * * @param \Jet_Form_Builder\Request\Fields\Media_Field_Parser $parser */ function ( $parser ) { // Extra guard: bail out if the expected object is not passed. if ( !…Continue reading
// Zmiana logo na stronie logowania WordPress. add_filter( ‘login_head’, function () { $custom_logo = ‘https://yourimageurl.com’; $logo_width = 200; $logo_height = 84; printf( ‘ ‘, $custom_logo, $logo_width, $logo_height ); }, 990 );Continue reading