在 Drupal 中将评论框添加到所见即所得

发布于 2024-11-04 21:29:41 字数 149 浏览 0 评论 0原文

我想在 Drupal 网站上的新闻项目中添加评论部分。

我希望能够在所见即所得编辑器中执行此操作,这可能吗?

如果不是,我将如何构建一个在创建页面时出现的评论框选项。

我知道有很多问题要问,所以提前感谢您的帮助。

格雷姆

I would like to add a comment section to a news item on a Drupal site.

I would like to be able to do this in the WYSIWYG editor, is this possible?

If not how would I go about building a comments box option to appear when creating pages.

I know its a lot to ask, so thank you in advance for your help.

Graeme

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

无声静候 2024-11-11 21:29:41

您可以简单地使用Comment核心模块,并安装一个所见即所得的模块,例如ckeditorfckeditortinymce...

You can simply use Comment core module, and install a wysiwyg module like ckeditor, fckeditor, tinymce...

孤星 2024-11-11 21:29:41

所以我做了一些研究,这里有一个评论框。它只是一个 HTML 框。

 <div id="HCB_comment_box"><a href="http://www.htmlcommentbox.com">HTML Comment Box</a> is loading comments...</div>
 <link rel="stylesheet" type="text/css" href="http://www.htmlcommentbox.com/static/skins/simple/skin.css" />
 <script type="text/javascript" language="javascript" id="hcb"> /*<!--*/ if(!window.hcb_user){hcb_user={};} (function(){s=document.createElement("script");s.setAttribute("type","text/javascript");s.setAttribute("src", "http://www.htmlcommentbox.com/jread?page="+escape((window.hcb_user && hcb_user.PAGE)||(""+window.location)).replace("+","%2B")+"&opts=406&num=10");if (typeof s!="undefined") document.getElementsByTagName("head")[0].appendChild(s);})(); /*-->*/ </script>

我在这里找到它 http://www.htmlcommentbox.com/

非常简单,很抱歉我发布了问题。

So I did a bit of research and here is a comments box. It is just a HTML box.

 <div id="HCB_comment_box"><a href="http://www.htmlcommentbox.com">HTML Comment Box</a> is loading comments...</div>
 <link rel="stylesheet" type="text/css" href="http://www.htmlcommentbox.com/static/skins/simple/skin.css" />
 <script type="text/javascript" language="javascript" id="hcb"> /*<!--*/ if(!window.hcb_user){hcb_user={};} (function(){s=document.createElement("script");s.setAttribute("type","text/javascript");s.setAttribute("src", "http://www.htmlcommentbox.com/jread?page="+escape((window.hcb_user && hcb_user.PAGE)||(""+window.location)).replace("+","%2B")+"&opts=406&num=10");if (typeof s!="undefined") document.getElementsByTagName("head")[0].appendChild(s);})(); /*-->*/ </script>

I found it here http://www.htmlcommentbox.com/

very simple, I'm sorry I posted the question.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文