
Originally Posted by
Absolute
You would need to duplicate the core PHP files, rather than creating a new define page. Define Pages are really meant for static content, whereas the page you want to build needs to be completely dynamic, so as to load in all the new products.
You need module files, which is found in includes/modules/pages/new_products/
You need a language file found in includes/languages/english/new_products.php
You need template pages, which are found in your templates directory.
You may also need to duplicate other pages if it is the actual layout you want to change, as there are a number of other templated files, and module files which are called in addition, such as those files which build the product listing sections.
In all, not a simple task, but certainly achieveable.
Absolute