How to render an element with mutiple conditions time & date?

Hey @RMBC803 -while I am not an expert in this myself, let’s see whether I can help you.

  1. telephone number visible between 9-5 // mo. - fr.
    For the phone number to be visible the condition we specify needs to be true. So I would start with:

Day >= mo AND day <= fr AND time >= 08:00
(last condition is where I differ from your setup) OR
Day >= mo AND day <= fr AND time <= 17:00

—you cannot simply take over my conditions, as I actually wanted to do the opposite (at least not for the phone number!) I wanted to show an element before 09:00 and after 17:00. Please bear in mind that I ran into problems with the server time and the it’s Interpretation by Bricks. So I had to use 08:00 instead of 09:00. Also for some reason - I could not get the Friday condition to work.

So I actually had to fallback on a solution where I rely on 2 banners:

  1. that shows between mo - th // before 08:00 and after 16:00 OR sat. OR Sun.
  2. that shows fr after 11:00

There is a ticket open - and it’s been worked on currently

Hope this helps you further