Change the way EPL shows the rent price
You can add substitute the slash character that separates the price from rent period with any string you like using the filter:
epl_property_price_rent_separator
Add the following function to your theme functions.php file to change the default from / to ' per '. The result will be '$99 per week', for example.
// Replace price and rent period slash separator in Easy Property Listings Rental Listings with 'per' word function my_epl_property_price_rent_separator( $label ) { $label = ' per '; return $label; } add_filter( 'epl_property_price_rent_separator' , 'my_epl_property_price_rent_separator' );