Thread Starter
hs6084
(@hs6084)
Perhaps find problem
look to this code
<script type=”text/javascript”>
$(document).ready(function(){
var dueDate = new Date(2017,8, 10);
var today = new Date();
if (today>= dueDate){
// or other conditions
$(“.database”).addClass(“update-need”);
}else{
$(“.database”).addClass(“not-expired”);
}
});
after changing the system date, loading the site
How to find above code in wordpress?
Thread Starter
hs6084
(@hs6084)
I think too the best way is contact the theme’s author then find a new theme
Thanks for your guidance
Thread Starter
hs6084
(@hs6084)
MySQL is running on the host
This problem only with main theme (even all plugins enable or disable) and no problem with other themes (all plugins is enable)
Thanks