The description of this module suggests that it works with "forms" in Drupal. Does that extend to forms created by the Webform Module? The reason for the question is that on the BOTCHA Form Add dialogue it asks for the Form ID and from what I can gather Webforms only have a NID.

Comments

erichomanchuk’s picture

Issue summary: View changes

All forms have a form id. The easiest was to get the form id is to look at the source code and the id on the form element is the form id. You just need to replace "-" with "_" to get the proper id.

<form class="webform-client-form" enctype="multipart/form-data" action="/ca-en/client-feedback-form?f32d_name=d1232f6d2d35f3859bf9f995c3_form" method="post" id="webform-client-form-677" accept-charset="UTF-8">

The id="webform-client-form-677" is the form id just replace dashes with underscores "webform_client_form_677"

helmo’s picture

Status: Active » Fixed

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.