This results in this: bitcoin INF 2299
I'm new to this. I'd appreciate your help.
?>
<div itemprop="offers" itemscope itemtype="http://schema.org/Offer">
<p class="price"><?php echo $product->get_price_html(); ?></p>
<?php
$coinId = bitcoin;
$json = \file_get_contents( "https://api.coinmarketcap.com/v1/ticker/{$coinId}" );
$coins = json_decode($json);
$calculo = $product->get_price()/$coins->price_usd;
?>
<?php foreach ($coins as $coin)
{ ?>
<p><?php echo $coin->id; ?> <?php echo $calculo; ?> <?php echo $product->get_price(); ?></p>
<?php } ?>
</div>