If you need to show something for which there is no appropriate Themler control you can use CMS Code control with native Magento functions. Simply add the provided code into the CMS Code editor (#1) and configure the appearance of the text inside this control using Styles options under #2:

Show Product SKU on Product Details:

<?php
if ($_product = Mage::registry('product')) {
echo $_product->getSku();
}
?>

or
<?php
echo Mage::app()->getLayout()->createBlock('cms/block')->setBlockId('myblock')->toHtml();
?>

<div class="alert alert-warning"> If you need to show something for which there is no appropriate Themler control you can use <b>CMS Code</b> control with native Magento functions. Simply add the provided code into the CMS Code editor (#1) and configure the appearance of the text inside this control using Styles options under #2: <br> <img src="http://attachments.answers.billiondigital.com/848/11848/cms-code-settings-2.png"> </div> ### Show Product SKU on Product Details: `<?php if ($_product = Mage::registry('product')) { echo $_product->getSku(); } ?>` or `<?php echo Mage::app()->getLayout()->createBlock('cms/block')->setBlockId('myblock')->toHtml(); ?>` [1]: http://attachments.answers.billiondigital.com/848/11848/cms-code-settings-2.png