Support

Account

Home Forums Backend Issues (wp-admin) Alter field output Reply To: Alter field output

  • Hi @buzzbored

    I believe you can set the price to empty if you want it to be “Call for Price” and then check it in the template like this:

    $price = $row['service_price'];
    if( $price ){
        $price = '$' . $price;
    }

    I hope this helps.