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
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
©2006-2025 IAAI Software | Contact Us | Privacy Policy
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