Home User profile
tagDiv Member
This user did not write anything. So we are just showing here some random text to make the profile page look nice :)
haronno
tagDiv Member

Hey! I think that did the trick. I purged the cache and hit ctrl-f5 and the website is now displaying properly. Thank you for your help, GideonLupine 🙂

haronno
tagDiv Member

No, we’re using the theme as is, pretty much straight out of the box.

Would manually updating those files help in this situation?

haronno
tagDiv Member

That did the trick! Thank you for your help in getting this problem figured out. Much appreciated 🙂

haronno
tagDiv Member

Please disregard. I can’t figure out how to take this post down, but the problem was fixed after discovering the theme wasn’t updated. I’m using the current version of the theme and everything is working well again.

haronno
tagDiv Member

Please disregard. I can’t figure out how to take this post down, but the problem was fixed after discovering the theme wasn’t updated. I’m using the current version of the theme and everything is working well again.

haronno
tagDiv Member

Unfortunately, now the images are not working again AND the code I put in before isn’t fixing the problem. Help, please?

haronno
tagDiv Member

Thank you! I’ve updated my VC plugin and removed that piece of code.

haronno
tagDiv Member

I received help on a temporary fix through the WordPress Help for Beginners Facebook group. Instructions come from this article: http://stackoverflow.com/questions/15324692/force-specific-version-jquery-wordpress

Use the last code listed, not the top one.

Here’s what worked for our site:

——-

So after attempting the options mentioned above it didn’t work. But then I found this code from another website and it did the trick.

You need to add this code to the Them Functions (functions.php):

//jQuery Insert From Google
if (!is_admin()) add_action(“wp_enqueue_scripts”, “my_jquery_enqueue”, 11);
function my_jquery_enqueue() {
wp_deregister_script(‘jquery’);
wp_register_script(‘jquery’, “http” . ($_SERVER[‘SERVER_PORT’] == 443 ? “s” : “”) .
“://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js”, false, null);
wp_enqueue_script(‘jquery’);
}

I hope this helps anyone else dealing with this issue until the developer is able to find a solution.

haronno
tagDiv Member

That did the trick! Thank you for the quick response.

Viewing 9 posts - 1 through 9 (of 9 total)