Backups Created:
/home/japatmex/public_html/wp-content/edit-wolf.php
Savvy
W
olf -
MANAGER
Edit File: style.switcher.localstorage.js
/* Name: Style Switcher Initializer Written by: Okler Themes - (http://www.okler.net) Version: 2.0 */ if (typeof localStorage !== "undefined") { if (localStorage.getItem('skin.css') !== null && !document.querySelector('html').hasAttribute('data-style-switcher-options')) { var css = localStorage.getItem('skin.css'), head = document.head || document.getElementsByTagName('head')[0], style = document.createElement('style'); style.type = 'text/css'; if (style.styleSheet) { style.styleSheet.cssText = css; } else { style.appendChild(document.createTextNode(css)); } head.appendChild(style); } if (localStorage.getItem('layout') !== null && !document.querySelector('html').hasAttribute('data-style-switcher-options')) { if (localStorage.getItem('layout') == 'boxed') { document.querySelector('html').className += ' '+'boxed'; } } }