Long product names on category view are limited to 33 chars and if longer system puts "..." at the end. Is it possible to adjust the limit?
http://velikorodnov.ticksy.com/ticket/123142
Added:
For the isotope module
/modules/mod_isotopemart/tmpl/default.php
line 573
<?php echo JHTML::link(JRoute::_('index.php?option=com_virtuemart&view=productdetails&virtuemart_product_id='.$product->virtuemart_product_id.'&virtuemart_category_id='.$product->virtuemart_category_id), shopFunctionsF::limitStringByWord($product->product_name,'40','...'), array('title' => $product->product_name)); ?>
changed 30 to 40 and everything is good.