Use query strings to link customers directly to locations, products, and categories in your menu. This can be useful for marketing campaigns and for website navigation.
List of available Query Strings
Set Location on page load
Option 1
Use location name: ?location=Name%20of%20location
- https://wildwing.mobi2go.com/?location=aurora
- https://storefront.mobi2go.com/?location=Online%20Ordering%20CBD
-
This works well as it is usually clear in the URL and looks a little nicer
-
Though it gets messier when there are multiple words in the store name, as you need to use %20 between each word, and it leaves room for error.
Option 2
Use location ID: ?location_id={MOBI location ID}
- https://storefront.mobi2go.com/?location_id=20185
-
Safer in case of name change, less room for error
-
Youβll need to provide a mapping of location IDs to the person setting up the URLs, if they donβt already have access to them.
Show Category on page load
This depends on whether the same category is used across more than one store. #/menu/category/{category_id}/{category_name}
-
If the same menu/category is used for all locations, OR if the category ID is specific to one location only, then you can use the category ID and the category name.
-
If the category name is the same across locations, but itβs actually part of a different menu (so it has a different category ID), you can use the category name and use an underscore instead of the category ID.

Show Locations list on page load
This shouldn't be necessary as it will load automatically if a user has never set a location before. Otherwise, the storefront will remember the previously set location, which is the best user experience.
https://www.wildwingrestaurants.com/order-now/#/locations/find
Set method on page load
Shouldnβt be needed often as this will open the locations selector where users can easily switch between delivery & pickup anyway. ?method=delivery
, ?method=pickup
Example: https://storefront.mobi2go.com/?method=pickup
Set location and method on page load
https://wildwing.mobi2go.com/?location=aurora&method=delivery
Set voucher code on page load
?voucher_code={VOUCHER CODE}
Example: https://storefront.mobi2go.com/?voucher_code=freechips
Show a product on page load
#/menu/item/{product_id}/{product_name}
Example: https://storefront.mobi2go.com/#/menu/item/4181996/MOBI%20House%20Fries
Names are case sensitiveAll names are case sensitive so where a category name is written as 'Category' in MOBI for example, it must also be written the same in the URL string.Query string can be used after your embedded URL to achieve the same function eg. www.mysite.com/order/?locationWe'd recommend you test your query string in an incognito tab, before you send it out.