• Resolved mapdi

    (@mapdi)


    Hi there,

    How can we remove the plus + before the prices in the select option field?

    [+ €44]

    Any chance to hide or remove?

    Regards
    Mapdi

    • This topic was modified 4 years, 7 months ago by mapdi.
    • This topic was modified 4 years, 7 months ago by mapdi.
Viewing 1 replies (of 1 total)
  • Hi Marius,

    Sorry for the inconvenience, here you can following code inside functions.php to hide ‘+’ symbol:

    add_filter('ppom_option_price_operator', 'ppom_remove_plus_symbol', 99, 3);
    function ppom_remove_plus_symbol($opr, $price, $meta){
        	$opr = '';
        	return $opr;
        }
Viewing 1 replies (of 1 total)
  • The topic ‘Remove Plus + in Options in Select field’ is closed to new replies.