View Single Post
  #1  
Old 06-07-2006, 05:45 AM
 
brgreene brgreene is offline
 

Advanced Member
  
Join Date: Oct 2002
Posts: 70
 

Default Php Code tag for short description.

On my site, www.heartlandbraidedrugs.com the Short Description of a product is not visible. I use only the long description for instructions on ordering rugs. The way the x-cart uses the Long Description for the Meta Description cause me problems with search engines.

I have found this code from the product.php.

Code:
$main = "product"; $smarty->assign("main",$main); if (!empty($product_info["productid"])) { $product_info["meta_descr"] = strip_tags($product_info["descr"]); $product_info["meta_keywords"] = strip_tags($product_info["product"])." ".preg_replace("/[^a-zA-Z0-9]/", " ", strip_tags($product_info["descr"])); }

It appears $product_info["meta_descr"] = strip_tags($product_info["descr"]); controls the description. Does anyone know what I would use in ($product_info["HERE"]) to use the short description?

Any help would be greatly appreciated.
__________________
Brian
X-Cart 4.0.18
Reply With Quote