pull down to refresh
good deal gzoo. appreciate you taking the time to respond and layout a solution here. ill look forward to your revision with cart/minicart fixes. thanks again!
reply
pull down to refresh
good deal gzoo. appreciate you taking the time to respond and layout a solution here. ill look forward to your revision with cart/minicart fixes. thanks again!
Hi tanaris! thanks for your feedback :)
woo_product_price_2satsI format the price in$product_p_formatedwithrtrim($total, ".0");to avoid having zeros that I don't need. You can solve it in a very simple way, either adding two decimals in the woocommerce price settings (woocommerce>settings) or commenting that line of code and in the fiat price printprint "<span class='fiat-price'> {$product_p_formated} €</span>";replace$product_p_formatedwith$total.function woo_product_price_2sats() { global $woo_currency; $all_meta_data = get_post_meta(get_the_ID()); $total=$all_meta_data['_regular_price'][0]; $price_oracle_url = "https://blockchain.info/tobtc?currency=$woo_currency&value=$total"; $ch = curl_init($price_oracle_url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_HEADER, 0); $data = number_format(ltrim(curl_exec($ch), "0.")); $product_p_formated=rtrim($total, ".0"); curl_close($ch); print "<span class='btc-price'>{$data} Sats </span>"; print "<span class='fiat-price'> {$product_p_formated} €</span>"; }