Custom Property Category Slug
<?php
/**
* Custom Property Category Slug
*/
add_filter('wpcasa_rewrite_categories_slug', 'custom_rewrite_categories_slug');
function custom_rewrite_categories_slug($slug) {
$slug = 'property-category';
return $slug;
}