Ruling out date changes

Hi there, I’m monitoring a webpage and I do not want to get email notifications when the following changes appeared:

“1 day” changed to “2 days”
“3” changed to “4”
“1 month” changed to “2 months”

How can I achieve this?

Is it possible to exclude the element displaying the time period from selection?

Hi there, I don’t think so. Here’s the website that I’d like to monitor: Schwarzes Brett - filmArche

The page uses time elements to display the time period. You can deselect them using the CSS selector: time

Check out the following articles and let me know if you have any questions:
https://distill.io/docs/web-monitor/what-is-visual-selector/#how-to-exclude-elements-from-the-selection-that-you-do-not-want-to-monitor
https://distill.io/docs/web-monitor/config-and-advanced-monitor-options/

Oh thanks! I managed to do this! Can I ask you another question?
How can I exclude the time elements on this website?:
https://www.crew-united.com/en/jobs/#!&filter=[{"id"%3A"channel"%2C"value"%3A"joboffer"%2C"settings"%3A[]%2C"isReadOnly"%3Afalse}%2C{"id"%3A"searchTerm"%2C"value"%3A""%2C"settings"%3A[]%2C"isReadOnly"%3Afalse}%2C{"id"%3A"budget"%2C"value"%3A[]%2C"settings"%3A"OR"%2C"isReadOnly"%3Afalse}%2C{"id"%3A"parentDepartmentLevel1"%2C"value"%3A[]%2C"settings"%3A"OR"%2C"isReadOnly"%3Afalse}%2C{"id"%3A"city"%2C"value"%3A[]%2C"settings"%3A"OR"%2C"isReadOnly"%3Afalse}%2C{"id"%3A"country"%2C"value"%3A[]%2C"settings"%3A"OR"%2C"isReadOnly"%3Afalse}%2C{"id"%3A"numberOfResults"%2C"value"%3A""%2C"settings"%3A[]%2C"isReadOnly"%3Afalse}%2C{"id"%3A"pageSize"%2C"value"%3A"50"%2C"settings"%3A[]%2C"isReadOnly"%3Afalse}%2C{"id"%3A"sortOrder"%2C"value"%3A"modificationDateTime_desc"%2C"settings"%3A[]%2C"isReadOnly"%3Afalse}%2C{"id"%3A"pagination"%2C"value"%3A"1"%2C"settings"%3A[]%2C"isReadOnly"%3Afalse}]

Sure, try the following CSS selector to deselect them:

.cu-ui-common-title-row > .cu-ui-common-breadcrumb > :last-child

Wow! Thanks a lot! This worked out!