Hi,
Please find following code in /wp-content/themes/panagea/js/main.js file.
$('input[name="dates"]').daterangepicker({
autoUpdateInput: false,
locale: {
cancelLabel: 'Clear',
/*daysOfWeek: [
"aa",
"Mo",
"Tu",
"We",
"Th",
"Fr",
"Sa"
],
monthNames: [
"January",
"February",
"March",
"April",
"May",
"June",
"July",
"August",
"September",
"October",
"November",
"December"
],*/
}
});
and replace with following code.
$('input[name="dates"]').daterangepicker({
autoUpdateInput: false,
locale: {
cancelLabel: 'Clear',
daysOfWeek: [
"aa",
"Mo",
"Tu",
"We",
"Th",
"Fr",
"Sa"
],
monthNames: [
"January",
"February",
"March",
"April",
"May",
"June",
"July",
"August",
"September",
"October",
"November",
"December"
],
}
});
And you should change weekdays and month names in it.
After that please minify main.js file and save it to main.min.js in the same directory.
Please use https://javascript-minifier.com/
And then check your website again.
And about merging js, we have not any recommendation.
Best Regards,
Hi,
Please find following code in /wp-content/themes/panagea/js/main.js file.
and replace with following code.
And you should change weekdays and month names in it.
After that please minify main.js file and save it to main.min.js in the same directory.
Please use https://javascript-minifier.com/
And then check your website again.
And about merging js, we have not any recommendation.
Best Regards,