This topic is locked
[SOLVED]

Removing "- " Minus

8/9/2022 11:26:00 AM
PHPRunner General questions
S
Sayed author

If values are stored in database with minus.
How can I remove minus from values in list OR view pages?

Sergey Kornilov admin 8/9/2022

You can set 'View as' type of this field to Custom and modify the value from the database before it is displayed ont he page. It will be applied to all List/View/Print pages.

'View as' Custom

S
Sayed author 8/9/2022

Perfect... Thanks

I used as below and minus is removed.
$value = str_replace("-", " ",$value);