Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试解决我的 Drupal 网站的问题。我安装并配置了 Vote Up/Down模块,现在我看到,只有我作为注册用户才能投票。有没有办法让匿名用户也投票?
感谢您的回复!调频
您是否允许在人员/权限下为匿名用户使用投票赞成/反对小部件?
模块使用 *hook_perm* 钩子...
function vud_node_perm() { return array('view vote up/down count on nodes', 'use vote up/down on nodes', 'administer vote up/down on nodes', 'see vote up/down node stats'); }