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