You may pay someone to create your store, or you visit our seminar and become a professional yourself with the silver certification
<?php //Product Weight if (!(($this->product->product_weight)==0)) { ?> <span class="product-fields-title" > <?php echo JText::_('COM_VIRTUEMART_PRODUCT_WEIGHT') ?> </span> <?php echo $this->product->product_weight ?> </br> <?php } ?> <?php //Product Length if (!(($this->product->product_length)==0)) { ?> <?php echo JText::_('COM_VIRTUEMART_PRODUCT_LENGTH') ?> <strong> <?php echo floor($this->product->product_length) ?></strong> </br> <?php } ?> <?php //Product Width if (!(($this->product->product_width)==0)) { ?> <?php echo JText::_('COM_VIRTUEMART_PRODUCT_WIDTH') ?> <strong> <?php echo floor($this->product->product_width) ?></strong> </br> <?php } ?> <?php //Product Height if (!(($this->product->product_height)==0)) { ?> <span class="product-fields-title" > <?php echo JText::_('COM_VIRTUEMART_PRODUCT_HEIGHT') ?> </span> <?php echo floor($this->product->product_height) ?> </br> <?php } ?>
Thanks tzic your code does work The line breaks </br> were not working, everything was run together on one line Inserted <p style="text-align: left;"></p> between each element and that fixed it Now I need to get the unit-of-measure (UOM) to display and I'll be happier than a hooker on payday
Thanks James for the info The issue I am having now is the decimals are being truncated from the length and width numbers, i.e. instead of 24.375 it just displays 24 What am I missing here I am running the latest "stable" versions of everything