• I need to add on certain property listings, instead of a price, a line that states “price available on request”
    How can i achieve this?

    Also, is it possible to use multiple currencies?

Viewing 4 replies - 1 through 4 (of 4 total)
  • Plugin Author rameez_iqbal

    (@rameez_iqbal)

    Hi, Please paste following code in functions.php file of your theme (preferable child theme). Then set the property price to 1 if you want to display text.

    add_filter('rem_property_price', 'change_price_text', 20, 3);
    
    function change_price_text($return, $price, $args){
    
    	if ($price == '1') {
    		return 'Price on request';
    	} else {
    		return $return;
    	}
    	
    }
    • This reply was modified 6 years, 8 months ago by rameez_iqbal.
    Thread Starter dalgc

    (@dalgc)

    Perfect. Thanks!

    Thread Starter dalgc

    (@dalgc)

    Any chance you can add a feature showing multiple currencies in the future?

    Plugin Author rameez_iqbal

    (@rameez_iqbal)

    Yes, we will work on it.

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Replace price with “price available on request”’ is closed to new replies.