- Issue created by @joachim
The module uses the global $base_url to determine whether to show the pop-up:
global $base_url;
$domains_list = str_replace(["\r\n", "\r"], "\n", $config->get('domains_list'));
$domains_list = explode("\n", $domains_list);
$domains_list = preg_replace('{/$}', '', $domains_list);
$domain_match = in_array($base_url, $domains_list);
However, $base_url can also include subfolders if that's where Drupal is installed. For example on my local dev, Drupal is at:
> http://localhost:8888/waltham-current/web
Active
1.0
Code