You are here:  » truncate title ?

Support Forum



truncate title ?

Submitted by alecs on Sat, 2011-04-30 04:45 in

hello david,

how can i truncate a product title ?

<a href='<?php print $product["productHREF"]; ?>'><?php print $product["name"]; ?>

i need this for the featured.php file.

thanks
alecs

Submitted by support on Sat, 2011-04-30 07:18

Hi Alecs,

Sure - use something like this, which will truncate the name to the first space after 20 characters (to avoid braking mid word!)

$breakOffset = strpos($product["name"]," ",20);
if ($breakOffset !== false)
{
  $product["name"] = substr($product["name"],0,$breakOffset);
}
<a href='<?php print $product["productHREF"]; ?>'><?php print $product["name"]; ?>

Cheers,
David.
--
PriceTapestry.com