How to add additional house categories with the epl_listing_meta_property_category filter

Insert the following functions into your theme functions.php or use mini plugin like the plugin epl-filters.zip file to modify the default categories for your requirements. Download, install and activate the epl-filters plugin. Make your changes using FTP.
While it may appear to be strange to use another plugin to modify Easy Property Listings this offers a website speed benefit of 100 to 1 improvement over storing these critical settings in the WordPress database. Additionally if you are creating several websites you can re-use your customised filters plugin on other sites you create or manage.
Download the editable filters plugin  epl-filters.zip
All you need to do is edit the list of choices you need with the program value on the left and the human readable on the right.

Using the epl_listing_meta_property_category filter you can control and adjust the default listing categories.

When you add a listing to Easy Property Listings there the default categories in the array are are contained in the plugin  functions.php file which are:

$defaults = array(	
	'House'			=>	__('House', 'epl'),	
	'Unit'			=>	__('Unit', 'epl'),	
	'Townhouse'		=>	__('Townhouse', 'epl'),	
	'Villa'			=>	__('Villa', 'epl'),	
	'Apartment'		=>	__('Apartment', 'epl'),	
	'Flat'			=>	__('Flat', 'epl'),	
	'Studio'		=>	__('Studio', 'epl'),	
	'Warehouse'		=>	__('Warehouse', 'epl'),	
	'DuplexSemi-detached'	=>	__('Duplex Semi-detached', 'epl'),	
	'Alpine'		=>	__('Alpine', 'epl'),	
	'AcreageSemi-rural'	=>	__('Acreage Semi-rural', 'epl'),
	'Retirement'		=>	__('Retirement', 'epl'),	
	'BlockOfUnits'		=>	__('Block Of Units', 'epl'),	
	'Terrace'		=>	__('Terrace', 'epl'),	
	'ServicedApartment'	=>	__('Serviced Apartment', 'epl'),
	'Other'			=>	__('Other', 'epl')
);

Once your listings are set to a specific category they will be available to search from using the search widget or [listing_search] shortcode.

EPL Filters Plugin

Download the editable filters plugin  epl-filters.zip

Adjust the categories to suit your real estate project.

How to use the  [listing_category] shortcode to display all listings that are in your new Snow category.

Add the following shortcode to a page to only display snow listings.

[listing_category category_key="property_category" category_value="Snow"]