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