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: 'books_library_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 books_library_button = document.getElementById('install-activate-button'); if (!books_library_button) return; books_library_button.addEventListener('click', function (e) { e.preventDefault(); const books_library_redirectUrl = books_library_button.getAttribute('data-redirect'); // Step 1: Check if plugin is already active const books_library_checkData = new FormData(); books_library_checkData.append('action', 'check_wordclever_activation'); fetch(installWordcleverData.ajaxurl, { method: 'POST', body: books_library_checkData, }) .then(res => res.json()) .then(res => { if (res.success && res.data.active) { // Plugin is already active → just redirect window.location.href = books_library_redirectUrl; } else { // Not active → proceed with install + activate books_library_button.textContent = 'Installing & Activating...'; const books_library_installData = new FormData(); books_library_installData.append('action', 'install_and_activate_wordclever_plugin'); books_library_installData.append('_ajax_nonce', installWordcleverData.nonce); fetch(installWordcleverData.ajaxurl, { method: 'POST', body: books_library_installData, }) .then(res => res.json()) .then(res => { if (res.success) { window.location.href = books_library_redirectUrl; } else { alert('Activation error: ' + (res.data?.message || 'Unknown error')); books_library_button.textContent = 'Try Again'; } }) .catch(error => { alert('Request failed: ' + error.message); books_library_button.textContent = 'Try Again'; }); } }) .catch(error => { alert('Check request failed: ' + error.message); }); }); });