Change No Stores text into HTML

The “no item found” text that appears when there are no stores within the selected criteria, you can add the text in the ASL Settings or via the shortcode attribute as given below.

[ASL_STORELOCATOR no_item_text="Sorry! no stores are found"]

In case you have some long HTML that needs to be added instead, it can be done via WordPress hook, with the code below that can be added to your theme functions.php

function asl_filter_locator_method($attrs) {

	$attrs['no_item_text'] = '<h3>No results</h3><p>No locations were found with the given criteria. Please modify your selection or input</p>';
	
	return $attrs;
};

add_filter('asl_filter_locator_config', 'asl_filter_locator_method');