
Originally Posted by
Danijel_M
Most of the pages are in the sitemap products (categories also) with priority value in range 1.0 - 0.1 but some of them are with strange priority values "0,1" while other with normal "0.1" (comma instead of point"
Test this one:
file includes/classes/sitemapxml.php
find
Code:
$itemRecord .= ' <priority>' . max(number_format((($this->sitemapFileItemsMax-$this->sitemapFileItemsTotal)/$this->sitemapFileItemsMax), 2, '.', ''), 0.10) . '</priority>' . "\n";
replace by
Code:
$itemRecord .= ' <priority>' . number_format(max((($this->sitemapFileItemsMax-$this->sitemapFileItemsTotal)/$this->sitemapFileItemsMax), 0.10), 2, '.', '') . '</priority>' . "\n";
Bookmarks