Quote:
Originally Posted by munnakv
C138 Kaysone, Thanks. It did the trick. It helps to learn the coding at times.
Another suggestion / request to bjhuang the thread owner:
Can we eliminate the page "/forum/sitemap.php? offset=0" appearing in the top navigation list, as it is a duplicate of "/forum/sitemap.php?"
|
open sitemap.php and find
PHP Code:
$output .= "<a href='".$sitemap_script."?offset=".(($i-1)*$count)."'>".$i."</a> ";
replace with
PHP Code:
if($i==1) $output .= "<a href='".$sitemap_script."'>".$i."</a> ";
else $output .= "<a href='".$sitemap_script."?offset=".(($i-1)*$count)."'>".$i."</a> ";