Home / Admin / keep retail prices showing including tax when wholesale price is set to show excluding tax
Duplicate Snippet

Embed Snippet on Your Site

keep retail prices showing including tax when wholesale price is set to show excluding tax

Display Prices in the Shop set to Excluding tax under Wholesale → Settings → Wholesale Prices → Tax. This article addresses the mismatch that setting causes.

Code Preview
php
<?php
global $wc_wholesale_prices_premium;
remove_filter( 'option_woocommerce_tax_display_shop', array( $wc_wholesale_prices_premium->wwpp_tax, 'wholesale_tax_display_shop' ) );
remove_filter( 'option_woocommerce_tax_display_cart', array( $wc_wholesale_prices_premium->wwpp_tax, 'wholesale_tax_display_cart' ) );

Comments

Add a Comment