View Single Post
Old 11-15-2020, 09:35 AM  
Colmike9
(>^_^)b
 
Colmike9's Avatar
 
Industry Role:
Join Date: Dec 2011
Posts: 7,223
Quote:
Originally Posted by MakeMeGrrrrowl View Post
I don't know if my issue is the same as yours, but recently I started having issues updating pages. My programmer sent this back to me...

Basically, Wordpress was updated and they killed off some old jQuery code that was deprecated. Some of the plugins you use rely on this old code so they were breaking the page. As a temporary fix, I installed a jQuery migration plugin to help fix the issue - and it seems to have (though it does give a nasty list of deprecation notices).

This should all resolve itself when you migrate to the new site, but in the meantime, at least it'll allow you to make changes and still use the existing one.

That fixed my issues.
Just random, but sometimes people or a theme will have something like this in functions, which can make things in admin not work:
wp_deregister_script('jquery');

Then this can fix it if it's the cause:
if ( !is_admin() ) wp_deregister_script('jquery');

Or use this if you want to use the newest jquery:
if (!is_admin()) {
wp_deregister_script('jquery');
wp_register_script('jquery', ("https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"), false);
wp_enqueue_script('jquery');
}


But, so many other things can cause this, and we don't have access to check for sure, so it's just a guess.
__________________
Join the BEST cam affiliate program on the internet!
I've referred over $1.7mil in spending this past year, you should join in.
I make a lot more money in the medical field in a lab now, fuck you guys. Don't ask me to come back, but do join Chaturbate in my sig, it still makes bank without me touching shit for years..
Colmike9 is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote