ABOUT US

About us image
store

Hot partsは自動車カスタマイズをより身近に、より良い商品をご提供させて頂くショップとなります。私たちは単にパーツを販売するだけでなく、お客様一人ひとりの理想とする走りとスタイルを実現するためのパートナーでありたいと考えています。厳選された最高品質のパーツのみを取り扱い、提携先工場の経験豊富なスタッフがサポートするハイパフォーマンスプロダクトをご提供いたします。

jQuery(function($){ // 初期ロード時にメーカーを取得 $.post('', { action: 'get_makers' }, function(res){ if(res.success){ var options = ''; $.each(res.data, function(slug, name){ options += ''; }); $('#maker-select').html(options); } }); // メーカー選択で車種取得 $('#maker-select').on('change', function(){ var maker = $(this).val(); $('#car-select').prop('disabled', true).html(''); $('#part-select').prop('disabled', true).html(''); if(!maker){ $('#car-select').html(''); return; } $.post('', { action:'get_cars', maker:maker }, function(res){ if(res.success){ var options = ''; $.each(res.data, function(slug, name){ options += ''; }); $('#car-select').html(options).prop('disabled', false); } }); }); // 車種選択でパーツ取得 $('#car-select').on('change', function(){ var car = $(this).val(); $('#part-select').prop('disabled', true).html(''); if(!car){ $('#part-select').html(''); return; } $.post('', { action:'get_parts', car:car }, function(res){ if(res.success){ var options = ''; $.each(res.data, function(slug, name){ options += ''; }); $('#part-select').html(options).prop('disabled', false); } }); }); // 検索ボタン押下 → WooCommerce商品一覧に遷移 $('#search-btn').on('click', function(){ var maker = $('#maker-select').val(); var car = $('#car-select').val(); var part = $('#part-select').val(); var url = '/shop/?'; if(maker) url += 'pa_maker=' + maker + '&'; if(car) url += 'pa_car=' + car + '&'; if(part) url += 'product_cat=' + part + '&'; url = url.replace(/&$/, ''); window.location.href = url; }); });