From 2e03e290b6884db0ce71c758dcbbd29c74b46e85 Mon Sep 17 00:00:00 2001 From: Tadas Labutis Date: Fri, 27 Mar 2026 15:37:46 +0200 Subject: [PATCH] Fix pudo pickup points not reloading on city change The city dropdown change event handler was commented out, preventing parcel point reload when switching cities. --- views/js/front/pudo.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/views/js/front/pudo.js b/views/js/front/pudo.js index b7d0debf..8bdc7762 100644 --- a/views/js/front/pudo.js +++ b/views/js/front/pudo.js @@ -157,9 +157,9 @@ $(document).ready(function () { $(document).on('click', '.dpd-pudo-select', selectPickupPointEvent); } - // $(document).on('change', 'select[name="dpd-city"]',function (){ - // searchPudoServicesEvent($(this)); - // }); + $(document).on('change', 'select[name="dpd-city"]', function () { + searchPudoServicesEvent($(this)); + }); function resizeMapEvent(e) { for (var idReference in dpdMap) {