jQuery(document).ready(function ($) { $('#rl_process_conversations_button').on('click', function () { const postId = $('#post_ID').val(); $('#rl_process_conversations_result').html('
Processing conversations...
'); $.ajax({ url: rlProcessConversations.ajax_url, method: 'POST', data: { action: 'rl_process_upcoming_conversations', post_id: postId, security: rlProcessConversations.nonce, }, success: function (response) { if (response.success) { $('#rl_process_conversations_result').html(`${response.data}
`); } else { $('#rl_process_conversations_result').html(`Error: ${response.data}
`); } }, error: function () { $('#rl_process_conversations_result').html('Failed to process conversations.
'); }, }); }); });