To activate the trackback functionality, you need to update the Comments module first. Find my version (xml file packed as zip) here: http://www.petzoldt.net/download/Comments-1.9.zip
After updating the module, you'll find a new checkbox in the options of "Comments" to activate the trackback function.
Furthermore, you need to add the following code to the comments-template:
Code: Select all
{if $trackback == 1}
<span class="trackback"><a href="{$trackbackurl}" rel="nofollow">Trackback-URL</a></span>
<!--
<rdf:RDF
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
<rdf:Description
rdf:about="{$redirecturl}"
dc:title="{$pagetitle}"
dc:identifier="{$redirecturl}"
trackback:ping="{$trackbackurl}" />
</rdf:RDF>
-->
{/if}
This was my first development with a CMSms module, please feel free to give me any response.