---
title: "How to Disable Attribute Fees Functionality"
source: "https://docs.nexcess.com/software/kadence/iconic/how-to-disable-attribute-fees-functionality/"
description: "Coming soon: Iconic WooCommerce Attribute Swatches is becoming part of Kadence Shop Kit. You may see both names used while we update the product, documentation,…"
vertical: "Software"
area: "Iconic"
date: "2021-08-02"
last_modified: "2026-08-12"
---

# How to Disable Attribute Fees Functionality

**Coming soon:** Iconic WooCommerce Attribute Swatches is becoming part of Kadence Shop Kit. You may see both names used while we update the product, documentation, and customer experience.

WooCommerce Attribute Swatches gives you the ability to [add fees to each attribute](https://docs.nexcess.com/software/kadence/iconic/woocommerce-attribute-swatches/add-fees-to-attributes-globally-store-wide/). However, on some occasions, you may want to turn this functionality off altogether, for example, if it’s conflicting with another plugin.

Fortunately, it’s possible to do with a code snippet. You can add this to your theme’s functions.php file, or by using a code snippets plugins.

```
/**
 * Disable Attribute Swatches fee functionality.
 */
add_filter( 'iconic_was_disable_fees', '__return_true' );
```
