mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
9 lines
184 B
Text
9 lines
184 B
Text
add_action( 'wp', function() {
|
|
|
|
if ( class_exists( 'woocommerce') ) {
|
|
if ( is_cart() ) {
|
|
add_filter( 'wc_tax_enabled', '__return_false' );
|
|
}
|
|
}
|
|
|
|
});
|