# tier-pricing-table/2.3.4/src/Integrations/Plugins/MixMatch.php

Tiered Pricing Table for WooCommerce, version 2.3.4. 17 lines.

- Page: https://pluginprobe.com/plugins/tier-pricing-table/2.3.4/code/src/Integrations/Plugins/MixMatch.php
- Raw: https://pluginprobe.com/plugins/tier-pricing-table/2.3.4/raw/src/Integrations/Plugins/MixMatch.php
- Modified: 2020-02-08T17:01:28+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/tier-pricing-table/2.3.4/code/src/Integrations/Plugins/MixMatch.php#L10-L20`.

```php
<?php namespace TierPricingTable\Integrations\Plugins;

class MixMatch {

	public function __construct() {
		add_filter( 'tier_pricing_table/cart/need_price_recalculation', function ( $bool, $cart_item ) {

			if ( isset( $cart_item['mnm_container'] ) ) {
				return false;
			}

			return $bool;

		}, 10, 2 );
	}
}

```
