Добавить текст к общей цене только на странице оформления заказа в Woocommerce

В зависимости от ваших потребностей эта функция будет вычислять разницу между двумя днями и возвращать результат в десятичные дни.

// This one returns a signed decimal. The sign indicates past or future.

this.getDateDiff = function(date1, date2) {
    return (date1.getTime() - date2.getTime()) / (1000 * 60 * 60 * 24);
}

// This one always returns a positive decimal. (Suggested by Koen below)

this.getDateDiff = function(date1, date2) {
    return Math.abs((date1.getTime() - date2.getTime()) / (1000 * 60 * 60 * 24));
}
3
задан LoicTheAztec 19 March 2019 в 22:42
поделиться