This app attempts to determine the user's location if not already known, first by requesting permission to use their browser's geolocation feature, then by looking up their location based on their IP address as a fallback. The location is stored in the shippingData
section of the orderForm
and can then be used by other apps, such as Location Availability.
A block is also provided which renders a form allowing the user to manually change their location.
Shopper Location also supports redirecting a user to a URL based off their location determined by the app. See the Client Redirect section.
This app also supports white label sellers selection, allowing shoppers to select one or more sellers available in their location. Shoppers will then be able to search and view products from those select sellers. See the Region Seller Selection section.
The Google Geolocation API key in your Inventory & Shipping settings is required for the geolocation feature.
To use the IP lookup fallback, you must have an API key for https://ip-geolocation.whoisxmlapi.com.
Configuration
-
Using VTEX IO CLI, install
vtex.shopper-location
in the desired account. -
In your account's admin dashboard, go to Apps > My Apps and click the
Settings
button for Shopper Location. -
Enter your API key for https://ip-geolocation.whoisxmlapi.com in the provided field and click
Save
. If you plan to use theClient Redirect
feature, it is also configured here. -
Modify your
store-theme
as follows:
- Add the following as dependencies in your theme's manifest.json file, if not already present:
_10 "vtex.store-components": "3.x",_10 "vtex.modal-layout": "0.x",_10 "vtex.shopper-location": "1.x"
- In one of the JSON files in your theme's
store
folder, define theshopper-location
block and its children, adjusting the props as needed:
_47"shopper-location": {_47 "children": ["modal-trigger#address"],_47 "props": {_47 "autofill": ["city", "country", "neighborhood", "number", "postalCode", "state", "street"]_47 }_47 },_47 "modal-trigger#address": {_47 "children": ["user-address", "modal-layout#address"]_47 },_47 "user-address": {_47 "props": {_47 "variation": "bar",_47 "showStreet": false,_47 "showCityAndState": true,_47 "showPostalCode": true,_47 "showPrefix": false,_47 "showIfEmpty": true_47 }_47 },_47 "modal-layout#address": {_47 "children": ["modal-header#address", "modal-content#address"]_47 },_47 "modal-header#address": {_47 "children": ["flex-layout.col#address-header"]_47 },_47 "flex-layout.col#address-header": {_47 "children": ["rich-text#address-header"],_47 "props": {_47 "paddingLeft": 5_47 }_47 },_47 "rich-text#address-header": {_47 "props": {_47 "text": "### Change Location"_47 }_47 },_47 "modal-content#address": {_47 "children": ["change-location"]_47 },_47 "change-location": {_47 "props":{_47 "postalCode": "first",_47 "autocomplete": true,_47 "notRequired": ["street", "number", "city", "state"],_47 "hideFields": ["complement", "neighborhood", "receiverName", "reference"]_47 }_47 },
- Also in one of the JSON files, place the
shopper-location
block in your layout. For example, to place the block in the header:
_20"flex-layout.row#header-desktop": {_20 "props": {_20 "blockClass": "main-header",_20 "horizontalAlign": "center",_20 "verticalAlign": "center",_20 "preventHorizontalStretch": true,_20 "preventVerticalStretch": true,_20 "fullWidth": true_20 },_20 "children": [_20 "flex-layout.col#logo-desktop",_20 "flex-layout.col#category-menu",_20 "flex-layout.col#spacer",_20 "shopper-location",_20 "search-bar",_20 "locale-switcher",_20 "login",_20 "minicart.v2"_20 ]_20 },
Client Redirect
You have the option to redirect the user to a country specific URL, based on the user's location. In the App Settings, enter the alpha-3 country code and URL for each supported country.
On their first visit, if a user is not on their country's website, a modal will display an option to be redirected to their country specific website. For users located in a country that does not have an entry in the App Settings, no option is displayed.
Additionally, there is an Automatic Redirect
option, that will redirect the user automatically, without displaying the modal.
Region Sellers Selection
Allow users to select one or more sellers serving their location from a list of options and display only products carried by those sellers in the search results.
️ For this feature to work properly, the item cannot have inventory in seller "1". If there's stock in seller "1", then the item will always appear in the search results, regardless of inventory in whichever sellers are selected.
Add the region-sellers
block as a child of the shopper-location
block to get started:
_10"shopper-location": {_10 "children": ["modal-trigger#address", "region-sellers"],_10 "props": {_10 "autofill": ["city", "country", "neighborhood", "number", "postalCode", "state", "street"]_10 }_10 },
Props
shopper-location
:
Prop name | Type | Description | Default value | Accepted values |
---|---|---|---|---|
autofill | array | Define which address fields should be filled | undefined | Array with any of these values ["city", "country", "neighborhood", "number", "postalCode", "state", "street"] |
change-location
:
Prop name | Type | Description | Default value | Accepted values |
---|---|---|---|---|
postalCode | string | Define the postalCode position on the form | last | first ,last |
autocomplete | boolean | Enables google autocomplete based on the postalCode (Only works when postalCode is set to first ) | false | true ,false |
notRequired | array | Turn visible fields not required | undefined | ["city", "country", "neighborhood", "number", "state", "street", "complement","receiverName", "reference"] |
hideFields | array | Hide fields and turn them not required | undefined | ["city", "country", "neighborhood", "number", "state", "street", "complement","receiverName", "reference"] |
region-sellers
:
Prop name | Type | Description | Default value | Accepted values |
---|---|---|---|---|
mode | string | Specify if component will be used as a search filter (filter ). Otherwise display as a dropdown (default ). | default | filter , default |
initiallyCollapsed | boolean | When using filter mode, set sellers list to display as collapsed (true ) or open (false ) initially. | false | true ,false |
displayStoreIcon | boolean | Display store icon. | true | true ,false |
useApplyButton | boolean | Apply sellers selection using a button (true ) or automatically apply changes after each selection (false ). | false | true ,false |
Customization
In order to apply CSS customizations in this and other blocks, follow the instructions given in the recipe on Using CSS Handles for store customization.
CSS Handles |
---|
changeLocationAddressContainer |
changeLocationContainer |
changeLocationFormContainer |
changeLocationGeoContainer |
changeLocationMapContainer |
changeLocationGeoErrorContainer |
changeLocationGeolocationButton |
changeLocationSubmitContainer |
changeLocationSubmitButton |
changeLocationTitle |
changeLocationError |
sellersSelector |
sellersSelectorContainer |
storeListWrapper |
storeIcon |
storesCurrent |
storesCurrentNames |
storeFilterTitle |
storeListIcon |
storeListContainer |
storeListItems |
storeListItem |