mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-05-01 11:52:25 +08:00
12 lines
345 B
Text
12 lines
345 B
Text
add_action( 'woocommerce_before_shop_loop', 'wc_filter_by_tag', 31 );
|
|
|
|
function wc_filter_by_tag() {
|
|
if ( is_product_category() ) {
|
|
wc_product_dropdown_categories();
|
|
}
|
|
wc_enqueue_js( "
|
|
$('#product_cat').change(function () {
|
|
location.href = '/product-category/' + $(this).val();
|
|
});
|
|
" );
|
|
}
|