Templatepath vs Stylesheetpath
Why is classipress almost everywhere equipped with TEMPLATEPATH? Like that it's highly annoying to produce a childtheme. For example I would like to customize the login-form.php and the register-form.php.
How do I do that? Simply adding these below with a STYLESHEETPATH to the childtheme produces a white screen.
// front-end includes
if (!is_admin()) :
include_once(TEMPLATEPATH.'/includes/theme-login.php');
include_once(TEMPLATEPATH.'/includes/forms/login/login-form.php');
include_once(TEMPLATEPATH.'/includes/forms/login/login-process.php');
include_once(TEMPLATEPATH.'/includes/forms/register/register-form.php');
include_once(TEMPLATEPATH.'/includes/forms/register/register-process.php');
include_once(TEMPLATEPATH.'/includes/forms/forgot-password/forgot-password-form.php');
endif;