Get the free product price for bxgy
Retrieve the price of a free product in 'Buy X Get Y' promotions.
add_action('woocommerce_before_cart', function (){
if(class_exists('\Wdr\App\Router')){
if (!WC()->cart->is_empty()){
foreach (WC()->cart->cart_contents as $item){
$item['data'];
}
}
}
});
//example
//price -> $item['data']->get_price();
//Id -> $item['data']->get_id();