Then i try to do with {Products} Module, it not done.{foreach from=$output item='page'}
<url>
<loc>{$page->url}</loc>
<lastmod>{$page->date|date_format:"%Y-%m-%d"}</lastmod>
<priority>{$page->priority}</priority>
<changefreq>{$page->frequency}</changefreq></url>
{/foreach}
{capture assign='junk'}
{cms_module module='News' detailpage='your-news-detail-page' number='1000'}
{/capture}
{foreach from=$items item='entry'}
<url>
<loc>{$entry->moreurl}</loc>
<lastmod>{$entry->postdate|date_format:"%Y-%m-%d"}</lastmod>
<priority>{$page->priority}</priority>
<changefreq>{$page->frequency}</changefreq>
</url>
{/foreach}
<!--Add more-->
</urlset>
<!--Add More--> with Products
Result Info - SiteMap Made Simple => OK{capture assign='junk'}
{cms_module module='Products'}
{/capture}
{foreach from=$items item='entry'}
{assign var='datum' value=$entry->modified_date}
{assign var='locatie' value=$entry->detail_url}
<url>
<loc>{$locatie}</loc>
<lastmod>{$datum}</lastmod>
<priority>{$page->priority}</priority>
<changefreq>{$page->frequency}</changefreq>
</url>
{/foreach}
But Save sitemap.xml is not done.
Why not with {Products} help me.