Hello @manojkb5
This plugin has a filter to alter the currency format. I used it. The problem was solved.
Please try the below code in your active theme’s functions.php
add_filter('wt_pklist_change_currency_format','wt_alter_currency_format',10,10);
function wt_alter_currency_format($result,$symbols,$wc_currency_symbol,$currency_pos,$decimal,$decimal_sep,$thousand_sep,$user_currency,$price,$order){
return '<span>'.$result.'</span>';
}