New Comment System
The blog now uses a new comment system – Disqus. I upgraded to BE v2.5, and found various instructions on how to move to Disqus… including these. There was one problem, however. The instructions state that on post.aspx, JavaScript needs to change to the following: <script type="text/javascript"> var disqus_title = '<%=Post.Title %>'; var disqus_identifier = '<%= Post.Id.ToString() %>'; var disqus_url = '<%= Post.AbsoluteLink %>'; var disqus_developer = '<%= BlogEngine.Core.BlogSettings.Instance.DisqusDevMode ? 1 : 0 %>'; (function () { var dsq = document.createElement('script'); dsq.type = 'text/javascript'; dsq.async = true; dsq.src = 'http://<%=BlogEngine.Core.BlogSettings.Instance.DisqusWebsiteName %>.disqus.com/embed.js'; (document.getElementsByTagName('head')[0] || document.getElementsByTagName('body')[0]).appendChild(dsq); })(); </script> However, that is not accurate and will result in errors. The correct code needs to reference Page, and not Post. ...