Title: Hide $fee_no
Last modified: November 4, 2021

---

# Hide $fee_no

 *  Resolved [ipolska](https://wordpress.org/support/users/ipolska/)
 * (@ipolska)
 * [4 years, 6 months ago](https://wordpress.org/support/topic/hide-fee_no/)
 * Hi,
    is it possible to cut $fee_no permanently? I did it in price.php and woocommerce.
   php and it works but only to next update.
 * I’ve got 2 PPO (Personalized Product Option) in one product. In cart it show:
   1-… and 2-… – i don’t need that.
 * In prices.php
    line 1086: function ppom_price_cart_fee line 1140: $label = “{
   $fee_no}-{$label} ({$option_label})”;
 * Cutting {$fee_no}- works. Is it possible to hook that from my template function
   file and rewrite permanently?

Viewing 3 replies - 1 through 3 (of 3 total)

 *  [N-Media](https://wordpress.org/support/users/nmedia/)
 * (@nmedia)
 * [4 years, 6 months ago](https://wordpress.org/support/topic/hide-fee_no/#post-15042667)
 * Hi,
 * we have provided the filter on line number 1141
 * `apply_filters('ppom_fixed_fee_label', $label, $fee, $item);`
 * you can add this filter into your theme’s functions.php 🙂
 *  Thread Starter [ipolska](https://wordpress.org/support/users/ipolska/)
 * (@ipolska)
 * [4 years, 6 months ago](https://wordpress.org/support/topic/hide-fee_no/#post-15045981)
 * Can you show an example use of this?
 *  [N-Media](https://wordpress.org/support/users/nmedia/)
 * (@nmedia)
 * [4 years, 6 months ago](https://wordpress.org/support/topic/hide-fee_no/#post-15046916)
 *     ```
       add_filter('ppom_fixed_fee_label', function($label, $fee, $item){
          return $label;
       },22,3);
       ```
   

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Hide $fee_no’ is closed to new replies.

 * ![](https://ps.w.org/woocommerce-product-addon/assets/icon-256x256.gif?rev=3186763)
 * [PPOM - Product Addons & Custom Fields for WooCommerce](https://wordpress.org/plugins/woocommerce-product-addon/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/woocommerce-product-addon/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/woocommerce-product-addon/)
 * [Active Topics](https://wordpress.org/support/plugin/woocommerce-product-addon/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/woocommerce-product-addon/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/woocommerce-product-addon/reviews/)

 * 3 replies
 * 2 participants
 * Last reply from: [N-Media](https://wordpress.org/support/users/nmedia/)
 * Last activity: [4 years, 6 months ago](https://wordpress.org/support/topic/hide-fee_no/#post-15046916)
 * Status: resolved