Recalculate discounts on Product Page
Recalculate discounts on Product Page.
add_action('woocommerce_before_single_product', function () {
if (function_exists('WC')) {
if (isset(WC()->cart) && WC()->cart != null) {
if (method_exists(WC()->cart, 'calculate_totals')) {
WC()->cart->calculate_totals();
}
}
}
}, 1);