danpros / htmly

Simple and fast databaseless PHP blogging platform, and Flat-File CMS
https://www.htmly.com
GNU General Public License v2.0
1.01k stars 258 forks source link

VK.COM #739

Closed KridKon closed 2 months ago

KridKon commented 2 months ago

Please integrate the comments Vk.com. I really liked your CMS, help me integrate VKontakte comments

danpros commented 2 months ago

For integration you can read the VK docs

Open your theme layout.html.php and add below:

<!-- Put this script tag to the <head> of your page -->
<script type="text/javascript" src="https://vk.com/js/api/openapi.js?168"></script>
<script type="text/javascript">
  VK.init({ apiId: 0, onlyWidgets: true });
</script>

Open post.html.php, add:

<!-- Put this div tag to the place, where the Comments block will be -->
<div id="vk_comments"></div>
<script type="text/javascript">
  VK.Widgets.Comments("vk_comments", {limit: 10, attach: "*", pageUrl: <?php echo $post->url;?>});
</script>
KridKon commented 2 months ago

Thank you very much

danpros commented 2 months ago

I will close this one. Thanks