@KamiSchami My module doesn’t support this. But if you want to modify it for your needs, the lines in particular are 116 and 118:
//determine how close pickup day is and formats accordingly.
var today = moment().startOf("day");
var pickUpDate = moment(pickup.pickupDate);
if (today.isSame(pickUpDate)) {
dateContainer.innerHTML = this.translate("TODAY");
} else if (moment(today).add(1, "days").isSame(pickUpDate)) {
dateContainer.innerHTML = this.translate("TOMORROW");
} else if (moment(today).add(7, "days").isAfter(pickUpDate)) {
dateContainer.innerHTML = pickUpDate.format("dddd"); // here...
} else {
dateContainer.innerHTML = pickUpDate.format("MMMM D"); //...and here
}
This will help figure out your formatting options:
https://momentjs.com/docs/#/displaying/
- Jeff