Dear mariolino320,
Please go to the file:
components\com_jshopping\js\functions.js
and find:
jQuery('#submit_product_list_filter_sort_dir').on('click', function(){
jshop.submitListProductFilterSortDirection();
});
Edit to:
jQuery('#submit_product_list_filter_sort_dir').on('click', function(){
jshop.submitListProductFilterSortDirection();
});
jQuery('.box_products_sorting .btn_sortting').on('click', function(){
jshop.submitListProductFilterSortDirection();
});
and go to the file: templates\sj_joomshop\html\com_jshopping\list_products\form_filters.php
and find:
<img src="<?php print $this->path_image_sorting_dir?>" alt="orderby" onclick="submitListProductFilterSortDirection()" />
Edit to:
<img src="<?php print $this->path_image_sorting_dir?>" alt="orderby" />
Thanks