Herkese merhaba opencart 2.0.0.0, 2.0.1.0, 2.0.1.1, 2.0.2.0, 2.0.3.1 için çalışan sürümü opencart 2.3.x yükselttim ancak içersindek ajax kodu düzenleyemedim

eski çekim dönügüsünde module /color-filter iken şimdiki konumu ise extension/module/color_filter olarak yaptım ancak chrome dan kontrol ettiğimde 404 hatası verdiğini farkettim aşağıdaki kodu nasıl düzenlemem gerekli ?

<script>
(function($) {
$(function() {
$('.color-swatches input[type=\'checkbox\'').on('click',function() {
var color = [];

$('input[name^=\'color-filter\']:checked').each(function(element) {
color.push(this.value);
});
$.ajax({
url: 'index.php?route=extension/module/color_filter',
type: 'post',
data: 'color=' + color,
dataType: 'json',
beforeSend: function() {
$('.product-layout+.clearfix').remove();
},
complete: function() {
},
success: function(json) {
$('.product-layout').each(function() {
var el = $(this);
var re = /\('(\d+)'/;
var sr = el.find('button').attr('onClick').match(re)[1];
if (json['success'].indexOf(sr) !== -1) {
el.fadeIn('slow');
} else {
el.fadeOut('slow');
}
});
}
});
});
});
})(window.jQuery);
</script>