Our integration code simply just adds URLs for translated threads. And by default only to first page of thread. We describe how to change code to have also other thread pages if you want it.
Member pages are not relevant and we advise to even block those pages by robots.txt
If you want to have in your sitemap also links for translated posts, then please use solution below:
1. Open file /vbseo_sitemap/vbseo_sitemap_functions.php
2. Find code:
PHP Code:
$vbseo_stat['p'] += vbseo_add_2urls(
3. Put BEFORE it:
PHP Code:
//additional code
$currenturl = vbseo_url_post($threadrow, $postrow, $pcount);
foreach($alanguages as $language) {
++$vbseo_stat['p'];
$enchancedurl = substr($currenturl,0,$strlenhost). $language."/".substr($currenturl,$strlenhost);
vbseo_add_url($enchancedurl, $prior2, $postrow['dateline'], $vboptions['vbseo_sm_freq_p']);
}
//end additional code