I would like some help to remove the time zone under a Date field in form block.
Additional how to change the Date format to dd/mm/yyyy.
I would like some help to remove the time zone under a Date field in form block.
Additional how to change the Date format to dd/mm/yyyy.
@basalba
To remove the time zone go to your page attributes and check the ‘Header Extra Content’ option and paste this code:
<style>
.text-muted {
display:none
}
</style>
The date format is controlled by your Time Zone settings in:
system & settings > basics > time zone, try changing the php setting to Europe/London and the default time zone to London
Thanks @ConcreteOwl, it works!!
Now I cannot edit anything in this page @ConcreteOwl, I cannot get in Edit mode just in the Booking page. I can edit any other pages in the website.
The likely cause is a typo in your extra content attribute. Or perhasp the styling is too greedy and interferes.
Go to the dashboard sitemap.
There you can find your page and do any of
If editing the attribute, try adding more style selectors to limit its scope. For example,
.ccm-page .text-muted { ....
Try this code instead:
<style>
div.text-muted {
display:none
}
</style>
Thanks, that made my day @ConcreteOwl