Hello Members,
I have searched forum and read some related thread but couldn't find anything useful regarding my issue. maybe someone can help me.
my problem is that i want to limit the product title text in category layout but i don't know how to implement this:
<?php echo shopFunctionsF::limitStringByWord($product->product_name, 20, '...') ?>
into this:
<?php echo JHTML::link($product->link, $product->product_name); ?>
Joomla 2.5.17 VM 2.6.0
i am using overrides.
thanks
how about
<a href="<?php echo $product->link; ?>">
<?php echo shopFunctionsF::limitStringByWord($product->product_name, 20, '...') ?>
</a>
or
<?php
$product->product_name = shopFunctionsF::limitStringByWord($product->product_name, 20, '...');
echo JHTML::link($product->link, $product->product_name);
?>
Yep that's work great.
Thanks GJC :D