PluginUs.Net - Business Tools for WooCommerce and WordPress

[realize your idea - make your dreams come true]

Support Forum

You need to log-in to create request (topic) to the support

total in single product page

The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday. If you have problems with registration ask help on contact us page please
If you not got email within 24~36 business hours, firstly check your spam box, and if no any email from the support there - back to the forum and read answer here. DO NOT ANSWER ON EMAILS [noreply@pluginus.net] FROM THE FORUM!! Emails are just for your info, all answers should be published only here.
The support doesn work on Saturdays and Sundays, so some Friday requests can be answered on Monday.

Hello,

I added the below code to my single product template to display the total.

how can I amend the code please to have the total amount converted as per the current currency selected?

Thanks

 

add_action( 'woocommerce_after_add_to_cart_button', 'bbloomer_product_price_recalculate' );

function bbloomer_product_price_recalculate() {
global $product;

echo '<div id="subtot" style="display:inline-block;"><div class="tottit">Total</div> <span></span></div>';
$price = $product->get_price();
$currency = get_woocommerce_currency_symbol();
wc_enqueue_js("
$('[name=quantity]').on('input change', function() {
var qty = $(this).val();
var price = '" . esc_js( $price ) ."';
var price_string = (price*qty).toFixed(0);
$('#subtot > span').html('" . esc_js( $currency ) ."' +price_string);
}).change();
" );
}

Hello

Please  try this  option - https://currency-switcher.com/function/woocs-woocs_exchange_value