Hi All,
I found this small hack for display short description in virtumart module JA Mesolite II –
<?php
// This is to get the product’s Short Description w/out hacking the ps_product product_snapshot
$db = new ps_DB;
$q = “SELECT product_s_desc FROM #__{vm}_product WHERE product_id=’$product_id'”;
$db->query( $q );
$db->next_record();
echo ‘<br /><div style=”width:180px;text-align:left;padding: 2px;”>’.$db->f(“product_s_desc”).'</div>’;
?>
using <div style=”width:180px;text-align:left;padding: 2px;”> we can set width to the box.and also make alignments to the product.
Hope it will help you.
Thanks