jQuery(function($) { $('select[name="sync_mode"]').on('change', function () { if ($(this).val() === 'auto') { $('.woo-sync-auto-fields').show(); } else { $('.woo-sync-auto-fields').hide(); } }); $('#woo_dropship_supplier_url_check').on('click', function () { const url = $('#woo_dropship_supplier_url').val(); const resultDiv = $('#woo_dropship_validation_result'); resultDiv.html('Checking...'); $.post(WDS.ajax_url, { action: 'woo_dropship_validate_url', nonce: WDS.nonce, url: url }, function (response) { if (response.success) { resultDiv.html('Valid ✅'); } else { resultDiv.html('Invalid ❌'); } }); }); });
No account yet?
Create an Account