jQuery(document).ready(function ($) { // Attach click event to the dismiss button $(document).on('click', '.notice[data-notice="get-start"] button.notice-dismiss', function () { // Dismiss the notice via AJAX $.ajax({ type: 'POST', url: ajaxurl, data: { action: 'app_development_company_dismissed_notice', }, success: function () { // Remove the notice on success $('.notice[data-notice="example"]').remove(); } }); }); }); // WordClever – AI Content Writer plugin activation document.addEventListener('DOMContentLoaded', function () { const app_development_company_button = document.getElementById('install-activate-button'); if (!app_development_company_button) return; app_development_company_button.addEventListener('click', function (e) { e.preventDefault(); const app_development_company_redirectUrl = app_development_company_button.getAttribute('data-redirect'); // Step 1: Check if plugin is already active const app_development_company_checkData = new FormData(); app_development_company_checkData.append('action', 'check_wordclever_activation'); fetch(installWordcleverData.ajaxurl, { method: 'POST', body: app_development_company_checkData, }) .then(res => res.json()) .then(res => { if (res.success && res.data.active) { // Plugin is already active → just redirect window.location.href = app_development_company_redirectUrl; } else { // Not active → proceed with install + activate app_development_company_button.textContent = 'Installing & Activating...'; const app_development_company_installData = new FormData(); app_development_company_installData.append('action', 'install_and_activate_wordclever_plugin'); app_development_company_installData.append('_ajax_nonce', installWordcleverData.nonce); fetch(installWordcleverData.ajaxurl, { method: 'POST', body: app_development_company_installData, }) .then(res => res.json()) .then(res => { if (res.success) { window.location.href = app_development_company_redirectUrl; } else { alert('Activation error: ' + (res.data?.message || 'Unknown error')); app_development_company_button.textContent = 'Try Again'; } }) .catch(error => { alert('Request failed: ' + error.message); app_development_company_button.textContent = 'Try Again'; }); } }) .catch(error => { alert('Check request failed: ' + error.message); }); }); });