Thread: Something Else
View Single Post
  #6  
Old 9th May 2016, 07:30
BamBam0077 BamBam0077 is offline
Banned
 
Join Date: Jul 2013
P2P
Posts: 410
Default
PHP Code:
<?php if ($site_config["MIDDLENAV"]) { ?> 
     <div style="width: 40%;">      
     <?php middleblocks(); ?>      
    </div> 
<?php ?>
I got it too work:

PHP Code:
if ($site_config['SITENOTICEON']){
    echo 
"<div style='width: 50%;'>";
    
begin_frame(T_("NOTICE"));
    echo 
$site_config['SITENOTICE'];
    
end_frame();
    echo 
"</div>";


Does need tidying up and yes you can integrate TT & TBDev together is not rocket science
Reply With Quote