Viewing 1 replies (of 1 total)
  • Hi @coolcoders,

    Sure, you can add/paste following shortcode inside your theme’s functions.php file:

    add_filter('ppom_option_label', 'ppom_option_label_cb', 99, 4);
    function ppom_option_label_cb($label, $option, $meta, $price) { 
        
        $label = "[+{$price}]";
        return $label;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘option label is showing for price’ is closed to new replies.