Help Docs Software Kadence Kadence Iconic Kadence Iconic WooCommerce Attribute Swatches How to Prevent the Display of Attribute Fees

How to Prevent the Display of Attribute Fees

WooCommerce Attribute Swatches gives you the ability to add fees to each attribute. These fees are then displayed in the variations section of your product pages. Including the swatch tooltips if these have been enabled.

However, you may not want the attribute fees to be visible on your product pages at all for a variety of reasons.

Fortunately, it’s possible to prevent the fees from displaying in this location with a code snippet. You can add this to your theme’s functions.php file, or by using a code snippets plugin:

/**
 * Prevent the Display of Attribute Fees
 */
add_filter( 'iconic_was_hide_attribute_label_fee', '__return_true' );
Was this article helpful?