EU VAT field for specific products
-
Hello,
I’m trying to show the EU VAT field for specific products only
I tried several code snippets, but all failed and break my site
Here is the last i tried, could you tell me how i could achieve this correctly please? I have 10 products which i need to have this field shown, for all other other i don’t need it.
add_filter(‘wc_aelia_eu_vat_assistant_show_checkout_field_vat_number’, function($show_field, $is_field_required) {
foreach( WC()->cart->get_cart() as $cart_item ){
$product_id = $cart_item[‘product_id’];if( $product_id == 5232 ) {
$show_field = true;
}return $show_field;
}, 10, 2);`Thanks a lot in advance
Best Regards
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘EU VAT field for specific products’ is closed to new replies.