VirtueMart Forum

VirtueMart 2 + 3 + 4 => General Questions => Topic started by: Laura Chu on January 24, 2017, 01:24:54 AM

Title: I cannot change product title length
Post by: Laura Chu on January 24, 2017, 01:24:54 AM
I need reduce products title length in case the name in one line, I changed product_name value TEXT in the database, but nothing happened. I have searched around, and followed some suggestions, but still cannot change product title length.  Please help, many thanks.
Title: Re: I cannot change product title length
Post by: GJC Web Design on January 24, 2017, 23:59:24 PM
do it programatically with php in the display templates
Title: Re: I cannot change product title length
Post by: Laura Chu on January 25, 2017, 00:17:14 AM
Can you please tell me what's code I need add, many thanks.
Title: Re: I cannot change product title length
Post by: GJC Web Design on January 25, 2017, 23:10:25 PM
there is already a VM function limitStringByWord() in the FE helper

call it something like   echo shopFunctionsF::limitStringByWord ($product->product_title, 4, ' ...') ;

or write your own -- there are plenty on Google

or do by css if your titles are fixed width

add a class truncate and

.truncate {
  width: 250px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
Title: Re: I cannot change product title length
Post by: Laura Chu on January 30, 2017, 06:39:53 AM
Thank you so much GJC