需要在 drupal 中自定义评论功能(超出评论模块)
我已经启用了评论模块。
对于我的网站,我有以下要求:
- 客户将留下评论 页面上的供应商服务
- 将向供应商提供可以回复的登录名 评论
- 只有供应商才能回复评论
另外,我想限制评论作者姓名中使用的某些单词,例如“客户”。
我只想知道是否存在具有此功能的模块,或者我需要自己编码。
I've already enabled comments module.
For my website i've following requirements:
- Customers will leave comments about
vendor service on Pages - Vendor will be provided a login who can reply
comments - Only vendors will be able to reply comments
Also I want to restrict some words used in comment author names like "customer".
All I want to whether any module exists with this functionality or I need to do coding myself.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这几乎肯定是一个自定义代码作业。 Drupals默认的评论系统允许任何拥有正确权限的人对节点进行评论。
comment_reply()将为您提供实现您想要的目标的起点。
This is almost certainly a custom code job. Drupals default comment system allows anyone to with the correct permissions to comment on nodes.
comment_reply() will give you a starting block to achieve what you want.