You're in the right file. Just two steps:
1. Add the following to the file that you are using to override english.php (or whatever language file you are using on your site) and add the following to it
PHP Code:
define('CATEGORIES_BOX_HEADING_QUICK_ORDER', 'Quick Order by Model');
2. Replace this
PHP Code:
if (SHOW_CATEGORIES_BOX_PRODUCTS_ALL == 'true') {
$content .= '<a class="category-links" href="' . zen_href_link(FILENAME_PRODUCTS_ALL) . '">' . CATEGORIES_BOX_HEADING_PRODUCTS_ALL . '</a>' . "\n";
}
}
$content .= '</div>';
with this
PHP Code:
if (SHOW_CATEGORIES_BOX_PRODUCTS_ALL == 'true') {
$content .= '<a class="category-links" href="' . zen_href_link(FILENAME_PRODUCTS_ALL) . '">' . CATEGORIES_BOX_HEADING_PRODUCTS_ALL . '</a>' . "\n";
}
$content .= '<a class="category-links" href="' . zen_href_link(FILENAME_QUICK_ORDER) . '">' . CATEGORIES_BOX_HEADING_QUICK_ORDER . '</a>' . "\n";
}
$content .= '</div>';