If you want the ez pages back on the top on the header you can add this piece of code below.
Path: \includes\templates\responsive_classic\common\tpl_header.php
For testing purposes i put it on line 43 right after the welcome note.
Code:
<div id="navSupp">
<ul>
<li><a href="<?= HTTP_SERVER . DIR_WS_CATALOG ?>"><?= HEADER_TITLE_CATALOG ?></a></li>
<?php
if (EZPAGES_STATUS_FOOTER === '1' || (EZPAGES_STATUS_FOOTER === '2' && zen_is_whitelisted_admin_ip())) {
require $template->get_template_dir('tpl_ezpages_bar_footer.php', DIR_WS_TEMPLATE, $current_page_base, 'templates') . '/tpl_ezpages_bar_footer.php';
}
?>
</ul>
</div>
Bookmarks