Showing posts with label zencart product list customization. Show all posts
Showing posts with label zencart product list customization. Show all posts

How to Remove add selected products to cart button from product listing page

0
includes->templates->your_template_name->templates->tpl_modules_product_listing.php

command the following lines19-20 && 58-59

How to Remove filter results by label from products listing page

0
command the following lines :47

includes->templates->your_template_name->templates->tpl_index_products_list.php

/*$form = zen_draw_form('filter', zen_href_link(FILENAME_DEFAULT), 'get') . '';*/

----

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()"');
// }