Hi Harshraj Singh,
#1 If the date will be always non-editable for all users, you can use ‘text’ widget instead date picker.
#2 You can achieve this with css, sample below
.mx-datepicker .mx-compound-control .btn.mx-button[disabled] {
display: none;
}
Thanks!