Menu
{block name='custom_tab_title_change'}
{/block}
(function(){
const path = location.pathname;
const hash = location.hash || '';
/*
Dopasowuje:
/pl/.../683-2940-web-4.html
grupy:
1 = prefix
2 = ID produktu
3 = ID wariantu (do usunięcia)
4 = reszta sluga
*/
const match = path.match(/^(.*\/)(\d+)-(\d+)-(.*\.html)$/);
if(match){
const cleanPath = match[1] + match[2] + '-' + match[4];
if(cleanPath !== path){
location.replace(cleanPath + hash);
}
}
})();




































































