How to remove default title set by drupal
You can implement a module and call below function function modulename_preprocess_page(&$variables) { unset($variables); } This will unset default title, but there are 2 problems: 1. This hook is not called…