@MB Themes,
I have tried with:
<?php if(floatval(osc_item_price()) <> floatval(pcm_item_old_price(NULL, false))) { ?>
<div id="price_old" class="round3 i-shadow<?php if(function_exists('pcm_item_old_price')) { echo pcm_item_old_price($item_id = NULL, $format = true); } ?>">
<i class="fa fa-tags"></i>
<span class="long-price-fix"><p style = "text-decoration:line-through;"><?php echo pcm_item_old_price(); ?></p></span>
</div>
<div id="price" class="round3 i-shadow<?php if(function_exists('multicurrency_add_prices') && osc_item_price() <> '' && osc_item_price() > 0) { ?> mc<?php } ?>">
<i class="fa fa-tags"></i>
<span class="long-price-fix"><?php echo osc_item_formated_price(); ?></span>
</div>
<?php } else { ?>
<div id="price" class="round3 i-shadow<?php if(function_exists('multicurrency_add_prices') && osc_item_price() <> '' && osc_item_price() > 0) { ?> mc<?php } ?>">
<i class="fa fa-tags"></i>
<span class="long-price-fix"><?php echo osc_item_formated_price(); ?></span>
</div>
But the div id="price_old" still shows ...without price in the grey part and that is correct but i want to hide the complete div if no price change was made... is that possible you think??? Thanks ...