Something I came up with... In the FORUMDISPLAY template whether or not a certain forum should have links to creating new LDM entries... just like the New Thread button, it's limited to the forums you specify. I have attached my buttons, they're ugly, but they're all I could do in short time.
Place the code right after:
Code:
<if condition="$show['newthreadlink']">
You add:
Code:
<if condition="in_array($forumid, array(25,0,0))">
<a href="local_links.php?action=addlink&catid=8" rel="nofollow"><img src="$stylevar[imgdir_button]/new_video.gif" alt="Add New Video Entry" border="0" /></a>
<a href="local_links.php?action=addlink&catid=7" rel="nofollow"><img src="$stylevar[imgdir_button]/new_audio.gif" alt="Add New Audio Entry" border="0" /></a> </if>
Where 25 is the number of the forum you want the link(s) to appear in.
LIVE EXAMPLE
There is probably an easier way of doing this without the array piece, but it works... so.