Frage

For alignment purposes, I'd like to insert price into a table. My other attributes are showing within the table but price goes out completely even though the code is within the table. enter image description here

Code

<table>
<tbody>
<tr>
<td><?php echo $this->__('MSRP: ') ?></td>
<td><span style="text-decoration:line-through;"><?php echo mage::helper('core')->currency($_product->getMsrp(),true,false); ?> </span></td>
</tr>
<tr>
<td><?php echo $this->__('Price: ') ?></td>
<td><?php echo $this->getTierPriceHtml() ?></td>
</tr>
</tbody>
</table>

How can price be displayed in a table?

Keine korrekte Lösung

Lizenziert unter: CC-BY-SA mit Zuschreibung
Nicht verbunden mit magento.stackexchange
scroll top