I want to add two prices on single product, first simple price was showing but when clicking on cariation size, price was duplicating, simple and variation both price showing, I want to show one price at a time.

I want to add two prices on single product, first simple price was showing but when clicking on cariation size, price was duplicating, simple and variation both price showing, I want to show one price at a time.

Fix 2x price GoTo: www.YOURDOMAIN/wp-admin/admin.php?page=wc-settings&tab=tax then remove {price_excluding_tax} from "Price display suffix" input field
You Can try with jquery onchange function and get above product price and show at bottom
You can try to use this code. Hope it will work.
add_action( 'init', 'wp1232_remove_price_for_variations', 99 );
function wp1232_remove_price_for_variations() {
global $product;
if ( 'variable' == $product->get_type() ) {
remove_action( 'woocommerce_single_product_summary', 'woocommerce_template_single_price', 10 );
}
}