FastComments.com

Встановлення віджета останніх обговорень Internal Link

The Recent Discussions Widget shows pages on your site that have the most recent comment activity. Each entry displays the page title, last activity date, and total comment count. It automatically detects dark backgrounds and adjusts its styling accordingly.

Basic Installation

Встановлення віджета Recent Discussions
Copy CopyRun External Link
1
2<script src="https://cdn.fastcomments.com/js/widget-recent-discussions-v2.min.js"></script>
3<div id="fastcomments-widget-recent-discussions"></div>
4<script>
5 FastCommentsRecentDiscussionsV2(document.getElementById('fastcomments-widget-recent-discussions'), {
6 tenantId: 'demo'
7 });
8</script>
9

Configuration Options

The FastCommentsRecentDiscussionsV2 function accepts the following configuration options:

  • tenantId (required): Ваш ідентифікатор орендаря FastComments
  • count (optional): Кількість сторінок для відображення. За замовчуванням 20, максимум 100
  • hasDarkBackground (optional): Примусово вмикає темний режим стилів. Якщо не встановлено, визначається автоматично за фоном сторінки

Advanced Examples

Custom Count

Recent Discussions з налаштованою кількістю
Copy CopyRun External Link
1
2<script src="https://cdn.fastcomments.com/js/widget-recent-discussions-v2.min.js"></script>
3<div id="fastcomments-widget-recent-discussions"></div>
4<script>
5 FastCommentsRecentDiscussionsV2(document.getElementById('fastcomments-widget-recent-discussions'), {
6 tenantId: 'demo',
7 count: 5
8 });
9</script>
10

Force Dark Mode

Recent Discussions з темним режимом
Copy CopyRun External Link
1
2<script src="https://cdn.fastcomments.com/js/widget-recent-discussions-v2.min.js"></script>
3<div id="fastcomments-widget-recent-discussions"></div>
4<script>
5 FastCommentsRecentDiscussionsV2(document.getElementById('fastcomments-widget-recent-discussions'), {
6 tenantId: 'demo',
7 hasDarkBackground: true
8 });
9</script>
10