Hi Rick,
What you can do is add a smarty if statement that only displays the code if something about the current scheduled conference (say, the title) checks out. For example, you can do something like the following:
- Code: Select all
{if $schedConf->getFullTitle() == 'My scheduled conference title'}
<li>» <a href="example.com">link</a></li>
{/if}
In the above example, the link would only display when the title for the currently-viewed scheduled conference is "My scheduled conference title". Note that the matching text in that if statement must match exactly -- case, spaces, and everything.
If you have any questions about this, just let us know!
Cheers,
James