thanks for working on this. always love this mod.
i edited template FORUMDISPLAY to change the text "Post new Thread" to "Add new Event"
in 2 places i changed
Code:
{vb:rawphrase post_new_thread}
to
Code:
<vb:if condition="$foruminfo[forumid] == 13">{vb:rawphrase add_new_event}<vb:else />{vb:rawphrase post_new_thread}</vb:if>
13 is my calendar forum id. if you have more than 1 calendar forum you could change it to
Code:
<vb:if condition="in_array($foruminfo['forumid'], array(13,14,15))">
problem is it's not recognizing "rawphrase add_new_event". i'm brand new to vb4 so i don't know how to load the var. little help?