Hi kp52, thanks for your helpful reply.
I realised that Evo development was slowing down (understandably), but I hadn't realised that it had completely ceased. Unfortunately, we don't really have the time resources available at present to move our site to Revo, and it may not be a simple job to do so as we have written a lot of our own snippets to interface with our own databases.
I looked up the documentation on Template Variables, and tried to set up a TV of type "Check Box" (because I want contributors to be able to choose one or more specified categories, rather than enter free-form text which is likely to lead to multiple misspellings, arbitrary categories, etc).
Will this data type work with Ditto? I ask, because my test article summary page doesn't quite seem to be working properly, the tags are displayed squashed together as onelongword [sic] (ie, in the case that I had tried to select the tags "one" "long" and "word"), despite having thought that I had written my Ditto code correctly?
Here's the code on the article summary page:
[!Ditto? &parents=`963` &paginate=`1` &display=`10`
&depth=`2` &filter=`isfolder,1,2`
&tpl=`news_headline_full_tpl` &extenders=`summary`
&dateFormat=`%e %B %Y, %H:%M.`
&tagData=`NewsTags` &tagDelimiter=`,` &tagDisplayDelimiter=`, ` !]
<p>
Showing [+start+] - [+stop+] of [+total+] articles.
<br />
[+previous+] [+pages+] [+next+]
</p>
Here's my article summary template:
<!-- Link to the article using its title -->
<h2 class="blogtitle">
<a href="[~[+id+]~]" title="[+title+]">[+title+]</a>
</h2>
<p class="newsmeta">
<strong>[+date+]</strong>
| <em>[+author+]</em>
| Tags: [+tagLinks+]
</p>
<div class="newslink">
<p>
<a href="[~[+id+]~]" title="[+title+]">[+summary+]</a>
<span class="readmore"><a href="[~[+id+]~]" title="[+title+]">[Read more »]</a></span>
</p>
</div><!-- /newslink -->
I must be missing something in my Ditto call, but I can't work out what?!