View Single Post
Old 11-27-2003, 03:13 PM   #4
Charter
Head Mole
 
Charter's Avatar
 
Join Date: May 2003
Posts: 2,539
Thanks. The chunk of code to modify is the following found in the robot_functions.php file. Comment out whatever you don't want at the end of the text files that are stored in the text_content directory. It's the $add_text variable that adds that text to the end of the files in the text_content directory.
PHP Code:
//weight of title and description is there
for ($itl 0;$itl TITLE_WEIGHT$itl++)
      {
      
$text_title .= $doc_title." ".$page_desc['content']." ";
      }
$add_text $text_title;
if (
is_array($textalts) && isset($textalts['content'])) {
    
$add_text .= $textalts['content'];
}
if (
is_array($page_keywords) && isset($page_keywords['content'])) {
    
$add_text .= " ".$page_keywords['content'];
}
array_push($text,$add_text); 
__________________
Responses are offered on a voluntary if/as time is available basis, no guarantees. Double posting or bumping threads will not get your question answered any faster. No support via PM or email, responses not guaranteed. Thank you for your comprehension.
Charter is offline   Reply With Quote