FastComments.com Blog

Wed Feb 12 2020
...

Korišćenje FastComments na Više Mesta Na Istojoj Stranici

FastComments je fleksibilan. Priključuje se regularnom elementu na stranici tako da funkcioniše sa bilo kojim web okvirom.

To znači da možemo imati onoliko thread-ova na stranici koliko želimo. Na primer, ovde su dva thread-a jedan pored drugog.

Kako to funkcioniše

Evo koda koji ovo omogućava. Prilagođavamo urlId parametar da bismo svaki thread učinili jedinstvenim. Imajte na umu da koristimo id-eve, međutim, možete proslediti bilo koji DOM element upitom na bilo koji način koji želite.

<script src="https://cdn.fastcomments.com/js/embed-v2.min.js"></script> <div class="widgets"> <div class="widget left" id="fastcomments-widget2"></div> <div class="widget right" id="fastcomments-widget3"></div> </div>

<script> window.FastCommentsUI(document.getElementById('fastcomments-widget2'), { tenantId: 'L177BUDVvSe', urlId: window.location.href + '?cats', headerHTML: '<h1>Diskutujte o Mačkama</h1>' }); </script> <script> window.FastCommentsUI(document.getElementById('fastcomments-widget3'), { tenantId: 'L177BUDVvSe', urlId: window.location.href + '?dogs', headerHTML: '<h1>Diskutujte o Psima</h1>' }); </script>