Thread Starter
Maco10
(@maco10)
I change the skin after five seconds, and the code is:
$(document).ready(function(){
setTimeout(function() {
$('div.date-label').css({'background' : 'blue'});
$('h3.widget-title').css({'color' : 'olive'});
}, 3000);
});
The fist sentence doesn’t work, is an id from Google Calendar. The other runs perfect. Why can’t I customize it if I an running it in local?
Thread Starter
Maco10
(@maco10)
I could fix it. The user didn’t have permissions in a concrete ip. I wrote define('WP_DEBUG', true); and define('WP_DEBUG_LOG', true); in wp-config.php to see the log.
Thanks.