Remove Detail Pages from Sitemap
So you are not using the detail pages in PHPLD and you want to remove them from the Sitemap. Using an FTP Client, like FireFTP, go to /admin/conf_sitemap.php.
1) Find:
if ($createGoogleSitemap == 1 && !empty ($googleSitemapString))
{
$links = $db->GetAll ("SELECT * FROM `{$tables['link']['name']}` WHERE `STATUS` = '2' ORDER BY ID ASC LIMIT {$start}, {$range}");
place // in front of the
$links = $db->GetAll ("SELECT * FROM `{$tables['link']['name']}` WHERE `STATUS` = '2'ORDER BY ID ASC LIMIT {$start}, {$range}");
2) Do the same for the articles line here:
//Addon for articles
$articles = $db->GetAll ("SELECT * FROM `{$tables['article']['name']}` WHERE `STATUS` = '2' ORDER BY ID ASC LIMIT {$start}, {$range}");
