Show = Today's Date + 3 Business Days

Hello,

I am making an eCommerce store.

I would like to show “Delivery by January 9th” (similar to Amazon).

The code will be [Today’s date + X business days].

Products will differ so in the CMS I imagine a number field which populates X, making each products formula tailored.

Does anyone have any idea how to achieve this? I am not good with custom code.

Thank you in advance!


Here is my site Read-Only: [LINK](https://preview.webflow.com/preview/freelancer-8cc932-86dd88357e9b0c31eda40?utm_medium=preview_link&utm_source=designer&utm_content=freelancer-8cc932-86dd88357e9b0c31eda40&preview=fac0289cf1a828bc7e844f2fcf8d6903&pageId=61b65aa7a1e639324a6b505d&itemId=61cb4775703169787a7a7b93&workflow=preview)
(how to share your site Read-Only link)

Here is some starter code;

var days = 10; // use the value of a custom field...
var date = new Date();
date.setDate(date.getDate() + days);
var dateString = date.toDateString();
var dateElement = document.createElement('div'); //you could use an existing element instead
dateElement.innerHTML = dateString; 
document.body.appendChild(dateElement);

What you want to do is custom and since you don’t code and unique things need to be tweaked for your use case you might want to hire someone to get you across the finish line.

Thank you for the quick and constructive reply Jeff. Code makes rudimentary sense to me. Appreciate the help getting started and yes I’ll look at hiring.