Is there a way to move the Categories-Tabs to the bottom of the page? admin>Layout settings>Categories-Tabs menu turns on/off
on top of the page I would like to move to the bottom if possible.
Thank you for your help.
Is there a way to move the Categories-Tabs to the bottom of the page? admin>Layout settings>Categories-Tabs menu turns on/off
on top of the page I would like to move to the bottom if possible.
Thank you for your help.
admin > tools > layoutbox controller > set the order
Zen-Venom Get Bitten
To move the categories-tabs to the footer, you would need to move or copy the code from tpl_header.php to tpl_footer.php.PHP Code:<!--bof-optional categories tabs navigation display-->
<?php require($template->get_template_dir('tpl_modules_categories_tabs.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_modules_categories_tabs.php'); ?>
<!--eof-optional categories tabs navigation display-->
Thank you for your help moving code worked.![]()
it works but now I get a 2 errors with html validation I have it on but on top and bottom.
Line 339, Column 10: ID "navCatTabsWrapper" already defined
<div id="navCatTabsWrapper">
An "id" is a unique identifier. Each time this attribute is used in a document it must have a different value. If you are using this attribute as a hook for style sheets it may be more appropriate to use classes (which group elements) than id (which are used to identify exactly one element).
and
Line 340, Column 10: ID "navCatTabs" already defined
<div id="navCatTabs">
An "id" is a unique identifier. Each time this attribute is used in a document it must have a different value. If you are using this attribute as a hook for style sheets it may be more appropriate to use classes (which group elements) than id (which are used to identify exactly one element).
Is there a way to correct these errors?