thank you!

AbanteCart v1.4.2.1 is released.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuQuote<span class="total-price"></span>
Quotefunction display_total_price() {
$.ajax({
type: 'POST',
url: '<?php echo $calc_total_url;?>',
dataType: 'json',
data: $("#product").serialize(),
success: function (data) {
if (data.total) {
$('.total-price-holder').show();
$('.total-price-holder').css('visibility', 'visible');
$('.total-price').html(data.total);
}
}
});
}