View Single Post
Old 01-29-2016, 10:19 AM   #12
byzeil
Hall Of Famer
 
byzeil's Avatar
 
Join Date: Aug 2009
Location: NJ, US
Posts: 2,007
Quote:
Originally Posted by Andreas Raht View Post
This is the original page_bottom_line.tpl:
PHP Code:
<!-- OOTP IGNORE START PAGE BOTTOM --><table cellspacing="0" cellpadding="0" align="center" width="968px">    <tr>        <td style="padding-top:10px; font-size:11px; text-align:center;">            [%POWERED_BY]        </td>    </tr>    <tr>        <td style="padding-top:2px; font-size:11px; text-align:center;">            [%VERSION]        </td>    </tr>    </table><!-- OOTP IGNORE END PAGE BOTTOM --> 
Remove the [%VERSION] This is the edited template:
PHP Code:
<!-- OOTP IGNORE START PAGE BOTTOM --><table cellspacing="0" cellpadding="0" align="center" width="968px">    <tr>        <td style="padding-top:10px; font-size:11px; text-align:center;">            [%POWERED_BY]        </td>    </tr>    <tr>        <td style="padding-top:2px; font-size:11px; text-align:center;">    </td>    </tr>    </table><!-- OOTP IGNORE END PAGE BOTTOM --> 
the edited version that you posted still has the 'version' in it.

Last edited by Andreas Raht; 01-29-2016 at 10:22 AM.
byzeil is offline   Reply With Quote