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.