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.
我正在给一个视图添加评论表单,其实在这个视图中我有3个附件,所以当我最终通过代码在view.tpl.php中添加了一个表单时
$comment = new stdClass; $comment->nid = arg(2); $form = drupal_get_form('comment_node_project_form', $comment); print render($form);
我可以看到页面上有 4 个表单,虽然我在那个视图中只需要一个表单,如何删除额外的表单?
仅在需要的 view.tpl.php 中使用您的代码。在视图配置的“主题信息”中列出的模板。您在名为 yout_view_id_view.tpl.php 或类似名称的模板中打印表单。我建议您阅读 drupal.org 上的文档。