Quote Originally Posted by lat9 View Post
Does that flexible footer title also show on other pages? IH-5 is using a constant named HEADING_TITLE. If the template's files (like maybe in an admin-level /includes/languages/english/extra_definitions file) is also defining that constant, that's where the issue lies.
This title only shows on the IH pages (Image Manager tab - Admin Tools tab - Preview tab - About Help tab).
IH does not call out the HEADING_TITLE, but the Flexible Footer file does.

IH code snippet:
Code:
define('BOX_TOOLS_IMAGE_HANDLER', 'Image Handler<sup>5</sup>');
define('BOX_TOOLS_IMAGE_HANDLER_UNINSTALL', 'Image Handler<sup>5</sup> Uninstall');
define('BOX_TOOLS_IMAGE_HANDLER_VIEW_CONFIG', 'View Image Handler<sup>5</sup> Configuration');
Flexible Footer snippet:
Code:
define('TEXT_FLEXIBLE_FOOTER_MENU_HEADING_TITLE','Flexible Footer Menu');
define('BOX_TOOLS_FLEXIBLE_FOOTER_MENU','Flexible Footer Menu');
define('FILENAME_FLEXIBLE_FOOTER_MENU','flexible_footer_menu.php');
define('TABLE_FLEXIBLE_FOOTER_MENU', DB_PREFIX . 'flexible_footer_menu');
define('HEADING_TITLE','Flexible Footer Menu');
Should I define the HEADING_TITLE in the IH file or remove it from the Flexible Footer file?

Thanks.