sorry for confusion
1)
you have only to manipulate 1 template file :: includes\templates\YOUR_TEMPLATE\common\main_template_vars.php
if the file does not exist, copy the one from template_default
now add a line with
Code:
if (file_exists(DIR_WS_MODULES . 'pages/' . $current_page_base . '/main_template_vars.php')) {
$body_code = DIR_WS_MODULES . 'pages/' . $current_page_base . '/main_template_vars.php';
} else {
$body_code = $template->get_template_dir('tpl_' . preg_replace('/.php/', '',$_GET['main_page']) . '_default.php',DIR_WS_TEMPLATE, $current_page_base,'templates'). '/tpl_' . $_GET['main_page'] . '_default.php';
}
// template-switch
define('IMAGE_USE_CSS_BUTTONS', 'no');
2) use zen-cart admin
tools > install sql patches and run
Code:
UPDATE configuration SET configuration_key = 'IMAGE_USE_CSS_BUTTONS_', configuration_title = 'CSS Buttons (functionless)' WHERE configuration_key = 'IMAGE_USE_CSS_BUTTONS' LIMIT 1;