Home › Forums › WooCommerce Personalized Product Options Manager (PPOM) › How to hide prices for options Tagged: hide option price, ppom option price This topic has 1 reply, 2 voices, and was last updated 5 years, 7 months ago by Jane Brian. Viewing 2 posts - 1 through 2 (of 2 total) Author Posts June 20, 2018 at 5:49 am #8995 nmediaKeymaster Following filter can be used to hide prices. Add this code inside your theme’s functions.php file at the end: add_filter('ppom_option_label', 'ppom_change_option_label', 99, 4); function ppom_change_option_label($label, $option, $meta, $product) { $label = $option['option']; return $label; } April 25, 2019 at 1:54 pm #11791 Jane BrianKeymaster HI It has been a long while for this topic, so we are closing this. Author Posts Viewing 2 posts - 1 through 2 (of 2 total) The topic ‘How to hide prices for options’ is closed to new replies.