mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-29 11:32:21 +08:00
15 lines
601 B
Text
15 lines
601 B
Text
add_action( 'woocommerce_variable_add_to_cart', 'wc_update_price_with_variation_price' );
|
|
|
|
function wc_update_price_with_variation_price() {
|
|
global $product;
|
|
$price = $product->get_price_html();
|
|
wc_enqueue_js( "
|
|
$(document).on('found_variation', 'form.cart', function( event, variation ) {
|
|
$('.summary > p.price').html(variation.price_html);
|
|
$('.woocommerce-variation-price').hide();
|
|
});
|
|
$(document).on('hide_variation', 'form.cart', function( event, variation ) {
|
|
$('.summary > p.price').html('" . $price . "');
|
|
});
|
|
" );
|
|
}
|