Hi Mark,
I’ve tested the tplAlt and it seems that even if tplFirst is not set the alt starts only at third doc.
Shoudn’t it start at the first (1,3,5,etc...).
@MadeMyDay
the name of the param is now tplFirst.
Any way I’ve also tested PHx integration with this tpl:
<div class="photoVig">
[+phx:if=`[+thumbImg+]`:is=``:then=``:else=`<span class="vignette"><a href="[~[+id+]~]" >[+thumbImg+]</a></span>`+]
<h4 class="titPhoto"><a href="[~[+id+]~]">[+pagetitle+]</a></h4>
<p>Tags: [+tagLinks+] <br />date:[+createdon:date=`%d %m %Y %R %S`+]<p>
</div>
Everything works fine.
About my issue with tags I’ve changed the line 17 (file=extender/tagging.inc.php) to fix it
$givenTags = isset($_GET[$dittoID.'tags']) ? trim($_GET[$dittoID.'tags'].$delimiter.$tags) : trim($tags);
to
$givenTags = isset($_GET[$dittoID.'tags']) ? trim($_GET[$dittoID.'tags']) : trim($tags);
:-)