$sale_price = get_post_meta( $cart_item['product_id'], '_sale_price', true );
if(! isset($sale_price) ) :
$product_price = get_post_meta( $cart_item['product_id'], 'woo_second_price', true );
$products_total += $product_price * $cart_item['quantity'];
endif;
add_action( 'woocommerce_before_checkout_shipping_form', 'before_shipping');
function before_shipping( $checkout ) {
$method = get_user_meta(get_current_user_id(), '_method',true);
WC()->session->set('chosen_shipping_methods', array($method ) );
}
add_filter( 'wpcf7_form_elements', 'wpcf7_remove_span_wrapper' );
function wpcf7_remove_span_wrapper( $content ) {
// вместо этого комментария запишите $content в файл, в лог, в консоль, тут можно, что угодно сделать
return $content;
}
то есть именно это