Hello Luis,
Thanks for posting in! I have checked your site and there is a JS error on the page. It is coming from your custom JS code. You have added this:
jQuery( document ).ready(function( $ ) {
$("footer.x-colophon.top .x-column.x-md.x-1-2:first-child").toggleClass('x-1-2:first-child x-1-3');
$("footer.x-colophon.top .x-column.x-md.x-1-2:last-child").toggleClass('x-1-2:last-child x-2-3');
});
<script>
$( function() {
$( document ).tooltip();
} );
</script>
Please be advised that you are only allowed to insert JS code. You are not allowed to insert JS scripts enclosed with <script></script>
. Please have your code be updated and use this instead:
jQuery( document ).ready(function( $ ) {
$("footer.x-colophon.top .x-column.x-md.x-1-2:first-child").toggleClass('x-1-2:first-child x-1-3');
$("footer.x-colophon.top .x-column.x-md.x-1-2:last-child").toggleClass('x-1-2:last-child x-2-3');
});
$( function() {
$( document ).tooltip();
} );
And since you have installed WP Fastest Cache plugin, kindly clear all the plugin caches first before testing your site again. If nothing is helping, provide us access to your site so that we can check your settings. Please create a secure note with the following info:
– Link to your site
– WordPress Admin username / password
To know how to create a secure note, please check this out: https://theme.co/docs/getting-support
Regards.