Hi Lisa,
ok, this is the reason, thanks for pushing me onto this. Usually I don’t nest identical quotes, it’s a pest.
Ok:
Template one - displays the newest comments:
{exp:comment:entries sort="desc" orderby="date" limit="8" dynamic="no" channel="lehrerfreund" cache="yes" refresh="60" disable="category_fields"}
<li>
<ul>
<li class="komAutor">
{name}, {comment_date format="%d.%m."} zu
</li>
<li class="komTitel">
<a href="http://{title_permalink=%27{my_template_group}/1s%27}#c-{comment_id}" title="Kommentar zu '{title}'">{title}</a>
</li>
</ul>
</li>
{/exp:comment:entries}
The 1s-template (single entry with pagination) has a code like this:
{exp:channel:entries channel="{my_channel}" limit="1" disable="member_data|trackbacks|pagination" track_views="four" status="open"}
{title}
{body}
{/exp:channel:entries}
{exp:comment:entries sort="asc" orderby="date" dynamic="yes" cache="yes" refresh="10" limit="100"}
(<a href="http://{title_permalink={my_template_group}/1s}/#c-{comment_id}">#{absolute_count}</a>)
{url_as_author}
{comment}
{paginate}
<div class="schalterli">
<a href="#top">/bilder/deko/top.gif</a>
{if {total_pages} > 1}
{if previous_page}
<a href="http://{auto_path}">/bilder/deko/links.gif</a>
{/if}
Seite {current_page}/{total_pages}
{if next_page}
<a href="http://{auto_path}">/bilder/deko/rechts.gif</a>
{/if}
{/if}
</div>
{/paginate}
{/exp:comment:entries}
When you go to http://www.lehrerfreund.de/ in the right bar you find “Neueste Kommentare” (first template). The problem is that it does always link to the first page and not to P800 - e.g. http://www.lehrerfreund.de/in/schule/1s/wieviel-verdienen-lehrer#c-18860 instead of http://www.lehrerfreund.de/in/schule/1s/wieviel-verdienen-lehrer/P800#c-18860 .
I hope I managed to formulate understandable 😊