I want to only display certain links during the operation, i.e. only the ones with a link graphic.
It seems to work except I get the work number of columns. I set it for 3 columns but I get 2.
The main code section is:
<table width="100%" align="center" border="[-- VAR.border --]" cellpadding="3">
[-- LOOP LINKS PAGE.Columns --]
[-- LINK YPIPageLinks --]
[-- END_LOOP LINKS --]
</table>
The YPIPageLinks section is:
[--DEFINE LINK_TO_PAGE--]
[-- IF Page.LinkGraphic --]
<td valign="top" align="[-- VAR.align --]">
<a href="[-- OUTPUT_DIRECTORY_URL --]/[-- PAGE.FileName --]">[-- PAGE.LinkGraphic --]</a>
<br><a href="[-- OUTPUT_DIRECTORY_URL --]/[-- PAGE.FileName --]">[-- IF PAGE.LinkName --][-- PAGE.LinkName --][-- ELSE --][-- PAGE.Name --][-- END_IF --]</a>
</td>
[-- END_IF --]
[--END_DEFINE LINK_TO_PAGE--]
Thoughts?