Gossamer Forum
Home : Products : Links 2.0 : Customization :

Re: meta_name?

Quote Reply
Re: meta_name? In reply to
 
Code:
local ($description, $related, $meta_name, $meta_keywords, $header, $footer, $next, $prev);

with the following codes:

Code:
local ($description, $meta_name, $meta_keywords, $header, $footer, $next, $prev);

Then replace the following codes:

Code:
# We set up all the variables people can use in &site_html.pl.
($description, $related, $meta_name, $meta_keywords, $header, $footer) = @{$category{$cat}}[2..7];

with the following codes:

Code:
# We set up all the variables people can use in &site_html.pl.
($description, $meta_name, $meta_keywords, $header, $footer) = @{$category{$cat}}[2..6];

Then delete or rem out # the following codes:

Code:
# Calculate the related entries and put in a <LI> list.
@related = split(/\Q$db_delim\E/, $related); $related = "";
foreach $relation (@related) {
$related .= qq|<li><a href="$build_root_url/|;
$related .= &urlencode($relation);
$related .= qq|/$build_index">|;
$related .= &build_clean($relation);
$related .= "</a> <font face=\"Verdana\" size=\"1\">($stats{$relatio
n}[0])</font></li>";
### mod Frown$stats{$relation}[0]) added to display number of related links
}

Regards,

------------------
Eliot Lee....
Former Handle: Eliot
Anthro TECH, L.L.C
anthrotech.com
* Check Resource Center
* Search Forums
* Thinking out of the box (codes) is not only fun, but effective.


Subject Author Views Date
Thread meta_name? jcom 1188 May 12, 2000, 10:04 AM
Post Re: meta_name?
Stealth 1137 May 12, 2000, 10:21 AM
Post Re: meta_name?
jcom 1134 May 12, 2000, 10:55 AM
Post Re: meta_name?
Stealth 1138 May 12, 2000, 12:09 PM
Post Re: meta_name?
jcom 1133 May 12, 2000, 12:56 PM
Post Re: meta_name?
Stealth 1137 May 12, 2000, 2:07 PM