https://www.icyphoenix.com/viewtopic.php?f=26&t=3317&p=22662#p22662
-----------------------------------
luckyou03
Tue 25 Dec, 2007 00:14

FAP CUSTOMIZATION - Add Titles To Next & Previous Pics In Pic Navigation
-----------------------------------
Hi i was wanting to add the actual picture titles to the next and previous pictures on the picture navigation on album_showpage_body right now the tpl file shows:

[code linenumbers=false]<!-- BEGIN pics_nav -->
<br />
<table class="forumline" width="98%" align="center" cellspacing="1" cellpadding="2">
	<tr><th class="thTop" nowrap="nowrap" width="100%" colspan="5">{pics_nav.L_PICS_NAV}</th></tr>
	<tr>
		<!-- BEGIN next -->
		<td class="row1" width="20%" align="center">
			<table><tr><td><div class="picshadow"><div class="picframe">
				<a href="{pics_nav.next.U_PICS_LINK}"><img src="{pics_nav.next.U_PICS_THUMB}" {THUMB_SIZE} alt="{pics_nav.L_PICS_NAV_NEXT}" title="{pics_nav.L_PICS_NAV_NEXT}" vspace="10" border="0" {pics_nav.next.PIC_PREVIEW} /></a>
			</div></div></td></tr></table>
		</td>
		<!-- END next -->
		<td class="row1" width="20%" align="center">
			<table><tr><td><div class="picshadow"><div class="picframe">
				<img src="{U_PIC_THUMB}" {THUMB_SIZE} border="3px" alt="{PIC_TITLE}" title="{PIC_TITLE}" vspace="10" style="border-color: #FF8866" />
			</div></div></td></tr></table>
		</td>
		<!-- BEGIN prev -->
		<td class="row1" width="20%" align="center">
			<table><tr><td><div class="picshadow"><div class="picframe">
				<a href="{pics_nav.prev.U_PICS_LINK}"><img src="{pics_nav.prev.U_PICS_THUMB}" {THUMB_SIZE} alt="{pics_nav.L_PICS_NAV_PREV}" title="{pics_nav.L_PICS_NAV_PREV}" vspace="10" border="0" {pics_nav.prev.PIC_PREVIEW} /></a>
			</div></div></td></tr></table>
		</td>
		<!-- END prev -->
	</tr>
</table>
<br />
<!-- END pics_nav -->[/code]

so instead of {pics_nav.L_PICS_NAV_NEXT} it'd be like {pics_nav.L_PICS_NAV_NEXT_TITLE} and {pics_nav.L_PICS_NAV_PREV} it'd be like {pics_nav.L_PICS_NAV_PREV_TITLE}


