MyBB Community Forums

Full Version: Insert var into calendar event template
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want to insert a var into a few calendar templates to add extra fields for events.

So like...

{$extravar}

would be inserted like this:

<tr>
		<td class="tcat"><strong>{$time_period}</strong></td>
	</tr>
{$extravar}
	<tr>
		<td class="trow1{$event_class}">
			<div style="float: left;">

Would I find

{$time_period}</strong></td>
	</tr>

and replace it with

{$time_period}</strong></td>
	</tr>
{$extravar}

Or is there some better way?