Conduccion
Conduccion
PlayStation
PlayStation
PlayStation
Essential
Combos
Accion
Accion
Accion
Accion
Accion
Accion
Accion
Deportes
Deportes
/* ===================================================== PLAYGAMER - Lógica juego gratis <= $15000 ===================================================== */ /* --------------------------------------- 1. Aplicar descuento antes del cálculo --------------------------------------- */ add_action('woocommerce_before_calculate_totals', function($cart){ if (is_admin() && !defined('DOING_AJAX')) return; if (!WC()->cart) return; $free_applied = false; foreach ($cart->get_cart() as $cart_item_key => $cart_item){ $price = $cart_item['data']->get_price(); if(!$free_applied && $price <= 15000){ $cart_item['data']->set_price(0); $cart->cart_contents[$cart_item_key]['pg_free_game'] = true; $free_applied = true; } } }, 20); /* --------------------------------------- 2. Precio tachado en carrito --------------------------------------- */ add_filter('woocommerce_cart_item_price', function($price,$cart_item){ if(!empty($cart_item['pg_free_game'])){ $old_price = wc_price($cart_item['data']->get_regular_price()); $price = ' '.$old_price.' GRATIS'; } return $price; },20,2); /* --------------------------------------- 3. Badge en el nombre del producto --------------------------------------- */ add_filter('woocommerce_cart_item_name', function($name,$cart_item){ if(!empty($cart_item['pg_free_game'])){ $badge=' Juego gratis '; $name .= $badge; } return $name; },20,2); /* --------------------------------------- 4. Badge mini carrito --------------------------------------- */ add_filter('woocommerce_widget_cart_item_quantity', function($html,$cart_item){ if(!empty($cart_item['pg_free_game'])){ $badge=' Gratis '; $html .= $badge; } return $html; },20,2);
Conduccion
Conduccion
PlayStation
PlayStation
PlayStation
Essential
Combos
Accion
Accion
Accion
Accion
Accion
Accion
Accion
Deportes
Deportes