На странице корзины woocommerce я хочу рассчитать сумму на основе введенного коэффициента enter code here http://prntscr.com/ny82ge в корзине
enter code here
<form action="get"> <input type="number" value="1" class="coef" name="coef"> </form>
в functions.php
function add_custom_price( $cart_object ) { $coef = $_GET['coef']; $price = $product->get_regular_price(); $nas = $coef * $price/100; $final_price = $nas + $price; foreach ( $cart_object->cart_contents as $key => $value ) { $value['data']->set_price($final_price); } }
код, который вы пишете, может быть правильным,
вы можете использовать действие woocommerce
add_action( 'woocommerce_before_calculate_totals', 'add_custom_price', 20, 1)
Надеюсь, это поможет вам!