🌎
Geoflow Docs
  • 🌎Welcome to Geoflow
  • 🔍Overview
    • Visitor Data Properties
  • ⭐Features
    • Geo Visibility
      • Define Multiple Conditions
      • Match All Conditions
      • Partially Match Condition
      • Reverse Condition Value
      • Custom Classes
    • Geo Form
      • Autofill Form Fields
      • Auto-Populate Select Fields
    • Geo Text
    • Geo Style
    • Geo Script
    • Script Extensions
      • Performance
      • Marketing Parameters
    • Optional Settings
      • Script Tag Data Attributes
      • Meta Tags
  • ⚙️Advanced
    • Code Snippets
    • Methods
      • run
      • getData
      • updateData
      • displayData
      • clearData
      • checkCondition
      • select
    • Callbacks
    • Events
    • REST API
      • Get Visitor IP
      • Get Visitor Data
      • Add Website
      • Delete Website
      • Update Website
      • List Websites
      • Get Website
  • 📄Legal
    • License Agreement
Powered by GitBook
  1. Features
  2. Geo Visibility

Match All Conditions

Instruct Geoflow to only display an element if all of the conditions you have defined match the visitor data properties.

PreviousDefine Multiple ConditionsNextPartially Match Condition

Last updated 1 year ago

Was this helpful?

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

Attribute Value
Description
Attribute Value
Description
Attribute Value
Description
Attribute Value
Description

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).

⭐
Page cover image