I updated my wp and my enfold
but all it´s not workin
I see your site working fine!
Hi!
What issues are you having on your site? I visited the URL you provided and everything seems to work fine. Please try clearing your browser’s cache and refresh the page again.
Let me know if you need further assistance.
Regards,
Jordan
I testit with cache out and in differents computers, but i can´t see the website!!!
And editor doesn´t work :(
Hey!
Please add following code to bottom of Functions.php file in Appearance > Editor
function modify_jquery() {
if (!is_admin()) {
wp_deregister_script('jquery');
wp_register_script('jquery', 'https://code.jquery.com/jquery-1.11.3.min.js');
wp_enqueue_script('jquery');
}
}
add_action('init', 'modify_jquery');
Best regards,
Yigit