Remove product alpha sorted combo box--in product listing page

0
include->modules->product_listing_alpha_sorter.php

command the following lines28-32
like
//if (TEXT_PRODUCTS_LISTING_ALPHA_SORTER != '') {
//echo '' . zen_draw_pull_down_menu('alpha_filter_id', $letters_list, (isset($_GET['alpha_filter_id']) ? $_GET['alpha_filter_id'] : ''), 'onchange="this.form.submit()"');
// } else {
//echo zen_draw_pull_down_menu('alpha_filter_id', $letters_list, (isset($_GET['alpha_filter_id']) ? $_GET['alpha_filter_id'] : ''), 'onchange="this.form.submit()"');
// }

How to disable or Enable Specials, New Products , Featured Products , All Products from zencart categories box

2
Goto Admin-->configuration-->Layout Settings change the following to false according to your need
1. Categories Box - Show Specials Link
2.Categories Box - Show Products New Link
3.Categories Box - Show Featured Products Link
4.Categories Box - Show Products All Link

How can I block specific hacker probing activities in zencart?

0
Some common attempts to probe your site for old vulnerabilities, or vulnerabilities from other systems, can be blocked by adding the following code to your site:

1. Copy and paste the following code into a new text file in your favorite text-only editor.
2. Save the file as "block_probing.php", and upload it to your store into the following folders:
  a) /your_renamed_admin/includes/extra_configures/
  b) /includes/extra_configures/



$val) {
if (substr_count($lcrequesturi, $val) || substr_count($query, $val) || substr($query, -1) == '?') {
$contaminated = TRUE;
}
}
unset($paramsToCheck, $paramsToAvoid, $key, $val);
if ($contaminated)
{
header('HTTP/1.1 406 Not Acceptable');
exit(0);
}
unset($contaminated);
unset($query2, $query, $querydec2, $querydec, $querydecsws, $useragent, $lcuseragent, $lcuseragentsws, $requesturi, $lcrequesturi, $lcrequesturisws, $lcpost, $lcpostsws);
/* *** END OF INNOCULATION *** */