Remove "sorting" Bar On Category Pages

Hello,

I'm trying to completely remove the "Sorting" bar that is at the top of the category pages. Anyone know how to accomplish?

Using latest version of CS-Cart

Thank you for any feedback!

Mike

Hello Mikew

You should add in file

/themes/responsive/templates/blocks/product_list_templates/products_multicolumns.tpl

line:

no_sorting=true

Best regards

Robert

Hello Mikew

You should add in file

/themes/responsive/templates/blocks/product_list_templates/products_multicolumns.tpl

line:

no_sorting=true

Best regards

Robert

Hello, thank you for your reply. I tries adding the code as shown below but it didn't seem to help. Maybe I did something wrong?
{** template-description:tmpl_grid **}
{include file="blocks/list_templates/grid_list.tpl"
show_name=true
show_old_price=true
show_price=true
show_rating=true
show_clean_price=true
show_list_discount=true
show_add_to_cart=$show_add_to_cart|default:false
but_role="action"
show_discount_label=true
no_sorting=true}

clear your cache and also template cache

/admin.php?dispatch&ctpl

As alternative just add the following code to the CSS section of the Theme editor

.ty-sort-container {
    display: none !important;
}

These changes will not be lost during upgrade

clear your cache and also template cache

/admin.php?dispatch&ctpl

Thank you Johnbol1. Forgot to do that. It works now

As alternative just add the following code to the CSS section of the Theme editor

.ty-sort-container {
    display: none !important;
}

These changes will not be lost during upgrade

Thank you for the alternative. This seems like it may be the best option upgrade wise. Thanks again!

The solution to hide is very good visual, but the links are still there and is not so good for SEO

a better solution also upgrade ready is to override sorting.tpl

#add file

design/themes/[THEME_NAME]/templates/addons/my_changes/overrides/views/products/components/sorting.tpl

#content

 

* My Changes add-on is required to be active in order for this tweak to work

Sorting links have the nofollow parameter, so it should not be a problem for seo