user491844 The answer is correct, although there is a simpler one: edit your theme template.php.
Just copy the entire function of the original theme into template.php, replace the "theme" with the name of your theme in the function declaration. For example, for example:
function theme_lt_unified_login_page($variables) {[...]}
Become this:
function MYTHEMENAME_lt_unified_login_page($variables) {[...]}
then an empty registration topic (or flushing all caches).
The only drawback is that all your settings will be accumulated in one file (template.php), which makes it not too neat for large projects.
Thony source share