Okay, I figured it out. For people who are trying to manually create their own define page here's what happened:
In the tpl_pagename_default.php, if you duplicated an already established defined page the code will be:
PHP Code:
<?php if (DEFINE_PAGE_2_STATUS >= 1 and DEFINE_PAGE_2_STATUS <= 2) { ?>
<div id="pageTwoMainContent" class="content">
<?php
/**
* load the html_define for the page_2 default
*/
require($define_page);
?>
</div>
<?php } ?>
You have to strip 2 lines of php codes to look like this:
PHP Code:
<div id="pageTwoMainContent" class="content">
<?php
/**
* load the html_define for the page_2 default
*/
require($define_page);
?>
</div>