MyBB Community Forums

Full Version: Add Template
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi,

I added a Template. Example:

Template Name: test
Template Set: Global Templates or current theme template
Code:
<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder" style="clear: both; border-top-width:1;">
    <tr>
        <td class="thead" width="100%">TEST</td>
    </tr>
    <tr>
        <td class="trow1">
        CONTENT
            </td>
    </tr>
</table>
<p> 

Then I insert this Template to Index: {$test} but it's not affected.

Please help me this.

Thank you.
Your variables need to be declared first in php. I'm new to MyBB myself but if you called for a variable in say index template it would need to have a value assigned to it to do anything. Perhaps the URL to your new template needs to be assigned?
Thank you. But I don't know PHP. Can you show me an example to declare a variable in PHP?