Masowe wykluczanie produktów ze względu na najwyższe/najniższe ID produktu
The snippet can be accessed without any authentication.
Authored by
Krzysztof Dyszczyk
snippetfile1.txt 161 B
add_filter('wpdesk_ceneo_product_meta_woocommerce_ceneo_disabled', function( $value, $product_id ){ if( $product_id < 5 ) { return 1; } return $value; }, 10, 2);
Please register or sign in to comment