Hi, Helojoy,
Thanks for your fast reply.
If i can not adjust the code to limit the numbers of Tags to be shown.
Can i change this function.
function zen_get_metatags_keywords1($product_id, $language_id) {
global $db;
$product = $db->Execute("select metatags_keywords
from " . TABLE_META_TAGS_PRODUCTS_DESCRIPTION . "
where products_id = '" . (int)$product_id . "'
and language_id = '" . (int)$language_id . "'");
return $product->fields['metatags_keywords'];
}[/COLOR]
I have tried to replace return $product->fields['metatags_keywords']; with
while (!$product_query->EOF)
{
$array_keywords[] = array($product_query->fields['metatags_keywords']);
$product_query->MoveNext();
}
return $array_keywords;
But All Tags stop showing expect the word "Array" !
So hard for me to work it out.
would you give me some tips.
Kind Regards.