
Originally Posted by
Cuti Malaysia
please use the easy expalanation to understand. I'm not fluent in english. Is it correct the code i put? Correct or not??
where to put this code?? please help me top put this code at above so that easy to me to trace
$vbseo_stat[$archived?'at':'t'] += vbseo_add_2urls(
finally, Also in our additional code you have to change 1 to $p.. i not undertand please give example...
Ok so - I will describe it in other words - hope it will help 
So - your actual code looks OK - the best way to check it is to run it.
Additional steps are not necessary - actual solution will add links for threads translated pages to sitemap. Additional steps will allow you also to ad there links to other pages of threads - if thread is big enough to have other pages (2nd, 3rd...).
So if you want to make this changes. Then you have to remove OUR additional code (the one you added) from place where you have it now and put it in other place. The other place is BEFORE:
PHP Code:
$vbseo_stat[$archived?'at':'t'] += vbseo_add_2urls(
And that is what our instruction means - put OUR code BEFORE vBSEO code listed below (instead of actual location of OUR code in your file).
And the last part tells you clearly that in OUR code (the code you added) you have to find this 1 (the number one - which is used only once in OUR code, so it is very easy) to give you more precised instruction:
PHP Code:
$currentthreadurl = vbseo_url_thread($threadrow, 1, $archived) . '&language=';
Here is 1 in our code. And you have to change this 1 to $p
So if you look on line from OUR code where 1 exists and you change it to $p then you will have there:
PHP Code:
$currentthreadurl = vbseo_url_thread($threadrow, $p, $archived) . '&language=';
Hope it is more understandable now. Please tell did it help