VirtueMart Forum

VirtueMart 2 + 3 + 4 => Templating & Layouts => Topic started by: skhn123 on June 10, 2014, 10:22:54 AM

Title: how to limit product titile text in category layout?
Post by: skhn123 on June 10, 2014, 10:22:54 AM
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_name20'...'?>

into this:
<?php echo JHTML::link($product->link$product->product_name); ?>

Joomla 2.5.17 VM 2.6.0

i am using overrides.

thanks
Title: Re: how to limit product titile text in category layout?
Post by: GJC Web Design on June 10, 2014, 10:50:38 AM
how about

<a href="<?php echo $product->link?>">

<?php echo shopFunctionsF::limitStringByWord($product->product_name20'...'?>

</a>


or


<?php 
$product
->product_name shopFunctionsF::limitStringByWord($product->product_name20'...'); 
echo 
JHTML::link($product->link$product->product_name); 

?>


Title: Re: how to limit product titile text in category layout?
Post by: skhn123 on June 13, 2014, 08:35:21 AM
Yep that's work great.

Thanks GJC  :D