This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// make the categories non hierarchical for their permalinks | |
function my_woocommerce_taxonomy_args_product_cat( $args ) { | |
$args['rewrite']['hierarchical'] = false; | |
return $args; | |
} | |
add_filter( 'woocommerce_taxonomy_args_product_cat', 'my_woocommerce_taxonomy_args_product_cat' ); |