> ## Knowledge Base Index
> Fetch the complete knowledge base index at: https://shopdoctors.crisp.help/sitemap.xml
> Use this file to discover available pages before exploring further.
> Pure-Markdown content can be obtained by appending a '.md' suffix to the content URLs listed in the sitemap (without the trailing slash).

# How do I instruct the app to only show some country/province options in the dropdowns?



Add the code below to the head section in your theme.liquid file, and add the country codes that correspond to the countries that you'd like to display:

| <script>window['docappShippingAllowedCountryCodes'] = ['US','CA'];</script>

Add the code below to the head section in your theme.liquid file, to define the province codes that are allowed for a given country. Only the countries with defined allowed provinces will be filtered. Other countries will still display all available provinces.

| <script>window['docappShippingAllowedProvinceCodes'] = {"{'US': ['NY']}"};</script>
