deposit invoices in the client area of ​​my clients

hello I want to know if we could deposit invoices I created in the client area

example example

my client orders a benefit when the service is made publishes an invoice that I want to deposit in his space is it possible if yes would there be a tutorial or video that presents this kind of thingmy client orders a benefit when the service is made publishes an invoice that I want to deposit in his space is it possible if yes would there be a tutorial or video that presents this kind of thing

Hi,

there is no video tutorial covering exactly what you need. However, if you want to show some content specific to a user, you can get the currently logged-in user from the wix-users module by importing it into your page code (http://www.wix.com/code/reference/wix-users.html). Alternatively, you can apply a filter to display user-specific content (CMS: Creating Custom Member Profile Pages | Help Center | Wix.com)

hello Marius

thank you for your answer said me in a previous post I had a request can you help me

I wish my client can select two dates but be spaced two days

Example:
in the first (datepicker1) he selects the 11/05/2019 in the (datepicker2) that he can select from the 13/05/2019 because two working days between each date

function addDays(days) {
var date = new Date(); // today
date.setDate(date.getDate() + days); return date;
}

$w.onReady( function() {
$w(“#datePicker1”).minDate = addDays(0);
$w(“#datePicker2”).maxDate = addDays(2);
} );