shshanker
12/8/2015 - 11:40 AM

// make the categories non hierarchical for their permalinks

// make the categories non hierarchical for their permalinks

<?php
// make the categories non hierarchical for their permalinks
function gs_woocommerce_taxonomy_args_product_cat( $args ) {
    $args['rewrite']['hierarchical'] = false;
    return $args;
}
add_filter( 'woocommerce_taxonomy_args_product_cat', 'gs_woocommerce_taxonomy_args_product_cat' );



?>