Request Product Return

We strive to make product returns easy and pain-free. Please fill out the information below and our sales team will follow-up shortly with next steps.

;(function($){ /* ============================== * CONFIGURATION * ============================== */ var TARGET_VARIATIONS = [ 29798 // add more variation IDs as needed ]; var MESSAGE = 'Call for Pricing'; var PHONE = '(800) 270-8926'; /* ============================== * STYLE (injected once) * ============================== */ function injectStyles() { if (document.getElementById('call-for-pricing-style')) { return; } var style = document.createElement('style'); style.id = 'call-for-pricing-style'; style.textContent = '.call-for-pricing-box{' + 'display:flex;' + 'align-items:center;' + 'gap:.5rem;' + 'margin:1rem 0 .75rem 0;' + 'padding:.75rem 1rem;' + 'border-radius:.5rem;' + 'background:#147bfb;' + 'font-weight:700;' + 'color:#ffffff;' + '}' + '.call-for-pricing-box a{' + 'color:#ffffff;' + 'text-decoration:underline;' + 'font-weight:800;' + '}' + '.call-for-pricing-icon{' + 'width:18px;' + 'height:18px;' + 'border-radius:50%;' + 'border:2px solid #ffffff;' + 'display:inline-flex;' + 'align-items:center;' + 'justify-content:center;' + 'font-size:12px;' + 'line-height:1;' + '}' + '.woocommerce-Tabs-panel--additional_information .call-for-pricing-box{' + 'display:none!important;' + '}'; document.head.appendChild(style); } /* ============================== * HELPERS * ============================== */ function clearMessage($form) { $form.find('.call-for-pricing-box').remove(); } function renderMessage($form) { clearMessage($form); var $target = $form.find('.woocommerce-variation-add-to-cart'); if (!$target.length) { $target = $form.find('.woocommerce-variation'); } $( '
' + '' + '' + MESSAGE + ': ' + PHONE + '' + '
' ).insertBefore($target); } function disablePurchase($form) { $form.find('.woocommerce-variation-price').hide(); $form.find('.woocommerce-variation-add-to-cart').hide(); } function enablePurchase($form) { $form.find('.woocommerce-variation-price').show(); $form.find('.woocommerce-variation-add-to-cart').show(); } /* ============================== * VARIATION HANDLING * ============================== */ function onVariation($form, variation) { clearMessage($form); if (TARGET_VARIATIONS.indexOf(parseInt(variation.variation_id, 10)) !== -1) { injectStyles(); disablePurchase($form); renderMessage($form); } else { enablePurchase($form); } } $(document).on('found_variation show_variation', 'form.variations_form', function(e, variation){ onVariation($(this), variation); }); $(document).on('reset_data hide_variation', 'form.variations_form', function(){ enablePurchase($(this)); clearMessage($(this)); }); })(jQuery);