// Creta Testimonial Showcase plugin activation document.addEventListener('DOMContentLoaded', function () { const academic_institute_button = document.getElementById('install-activate-button'); if (!academic_institute_button) return; academic_institute_button.addEventListener('click', function (e) { e.preventDefault(); const academic_institute_redirectUrl = academic_institute_button.getAttribute('data-redirect'); // Step 1: Check if plugin is already active const academic_institute_checkData = new FormData(); academic_institute_checkData.append('action', 'check_creta_testimonial_activation'); fetch(installcretatestimonialData.ajaxurl, { method: 'POST', body: academic_institute_checkData, }) .then(res => res.json()) .then(res => { if (res.success && res.data.active) { // Plugin is already active → just redirect window.location.href = academic_institute_redirectUrl; } else { // Not active → proceed with install + activate academic_institute_button.textContent = 'Nevigate Getstart'; const academic_institute_installData = new FormData(); academic_institute_installData.append('action', 'install_and_activate_creta_testimonial_plugin'); academic_institute_installData.append('_ajax_nonce', installcretatestimonialData.nonce); fetch(installcretatestimonialData.ajaxurl, { method: 'POST', body: academic_institute_installData, }) .then(res => res.json()) .then(res => { if (res.success) { window.location.href = academic_institute_redirectUrl; } else { alert('Activation error: ' + (res.data?.message || 'Unknown error')); academic_institute_button.textContent = 'Try Again'; } }) .catch(error => { alert('Request failed: ' + error.message); academic_institute_button.textContent = 'Try Again'; }); } }) .catch(error => { alert('Check request failed: ' + error.message); }); }); });