WooCommerce Modify Price

0.0/5
<?php
add_action( 'wp_footer', function () {

	?>
	<script>
		jQuery(document).ready(function() {
   		jQuery( '.variations_form' ).each( function() {

        // when variation is found, do something
        jQuery(this).on( 'found_variation', function( event, variation ) {
            jQuery("p.price").html(variation.price_html);
        });
    });
   });
</script>
<?php
} );

Comments and reviews

{{ reviewsTotal }} Review
{{ reviewsTotal }} Reviews
{{ options.labels.newReviewButton }}
{{ userData.canReview.message }}

Description

Author

Tags