Hi,
Please find this bit of code on line 754 of /includes/admin/register-admin-dynamic-options.php
"std" => "4",
"no_first"=>true,
"subtype" => array('1'=>'1','2'=>'2','3'=>'3','4'=>'4')),
and replace it with this
"std" => "8",
"no_first"=>true,
"subtype" => array('1'=>'1','2'=>'2','3'=>'3','4'=>'4','8'=>'8')),
---
then find between lines 1396-1401 of /includes/admin/register-admin-options.php
"std" => "4",
"subtype" => array( '1 Column'=>'1',
'2 Columns'=>'2',
'3 Columns'=>'3',
'4 Columns'=>'4',
)),
and replace with this
"std" => "8",
"subtype" => array( '1 Column'=>'1',
'2 Columns'=>'2',
'3 Columns'=>'3',
'4 Columns'=>'4',
'8 Columns'=>'8',
)),
Then you should see the option for 8 columns in the template builder.
Thanks,
Nick