Yes, you can.
You need to add an if() test around the line that calls the categories-tabs file, in /includes/templates/your_template/common/tpl_header.php.
Alter that section to look like this:
PHP Code:
<!--bof-optional categories tabs navigation display-->
<?php if (strpos($current_page_base, 'checkout') !== 0) {
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-->
if (strpos($current_page_base, 'checkout') !== 0) {
says"if the current page name does not start with checkout, do this".
You could do a similar thing in tpl_modules_categories_tabs.php instead, if you wanted.