I have a shop in 3 languages with the showing of plots, being PT EN and ES, but I want to leave the plots display only for PT.
How can I comment on these plots for EN and ES? is it possible?
The parcel code is:
<?php
$vezes = $_product->getData('parcelas');
echo '<p><small><b>Parcele em até '.$vezes.'x sem juros</b></small><br />';
for ( $i=1; $i <= $vezes; $i++ ) {
echo '<small>'.$i.'x de '.$_coreHelper->currency($_product->getFinalPrice()/$i, true, false).'</small><br />';
}
echo '</p>';
?>