epl_property_bond_position
You can adjust the position of the bond/deposit label to appear either before or after the bond amount.
Note: Bond here in Australia and other markets is the amount a tenant needs to pay before starting a lease. In other markets its know as deposit.
With Easy Property Listings you can quickly adjust the label to whatever you need it to be and adjust the position of the word.
Default Bond Setting
Adjust the bond label in settings as needed
Custom deposit label using the function below to adjust position
// Adjust Easy Property Listings Bond position function my_epl_property_bond_position() { $position = 'before'; return $position; } add_filter( 'epl_property_bond_position' , 'my_epl_property_bond_position' , 1 );