Profile Photo

Developers Hub

  • Private Group
  • 6 days, 19 hours ago
  • 0

    Posts

  • 1

    Members

This is a private group. To join you must be a registered site member and request group membership.

Manage push notifications

notification icon
We would like to show you notifications for the latest news and updates.
notification icon
You are subscribed to notifications
notification icon
We would like to show you notifications for the latest news and updates.
notification icon
You are subscribed to notifications
jQuery(document).ready(function($) { function updateWiseChatCount() { $.ajax({ url: wiseChatAjax.ajax_url, method: "POST", data: { action: "get_wise_chat_message_count" }, success: function(response) { if (response.success) { $(".wise-chat-icon .message-count").text(response.data); console.log("Количество сообщений обновлено: " + response.data); } else { console.log("Ошибка при получении количества сообщений"); } }, error: function(xhr, status, error) { console.error("Ошибка AJAX: " + error); } }); } // Обновляем счётчик каждые 10 секунд setInterval(updateWiseChatCount, 10000); updateWiseChatCount(); });