Match All Conditions
Instruct Geoflow to only display an element if all of the conditions you have defined match the visitor data properties.
How Does It Work?
By default, Geoflow will display an element if any conditions you have defined match (return true). This means if you have added three conditions and one of them is true, then the element is visible.
You can override this default behaviour by applying the attribute name and value noted below.
How To Implement
Attribute Name | Attribute Value | Which Page Element? |
---|---|---|
data-geo-match | all | Any element with the Geo Visibility data attribute. |
Any value other than 'all' added to this data attribute will have no effect.
Examples
countryCode:!AU
The element is visibile to everyone around the globe, except for those in Australia.
isMobile:true;countryCode:!CA
The element is only visible to mobile visitors not currently in Canada.
language:!fr
The element is visibile to anyone whose primary browser language is not currently set as French.
deviceType:!Desktop;isEU:true
The element is only visible to visitors in the European Union who are not on a desktop computer (e.g. Tablet and Mobile visitors).
Last updated
Was this helpful?