Form submit tracking Google Analytics
-
Hi, form submits are showing up in Google Analytics with no specific name. I believe this might be due to the missing value attribute on the button (not sure why the input was commented out anyway)?
contact-forms-builder-pro/frontend/html-template.php:
…
<input type=”hidden” name=”form_id” value=”<?php echo $form_id;?>” />
<!–<input type=”submit” value='<?php echo $btn_form_submit_label; ?>’ id=”btn_send_form_email_<?php echo $form_id;?>” name=”btn_send_form_email” />–>
<button type=”submit” name=”btn_send_form_email” value='<?php echo $btn_form_submit_label; ?>’ id=”btn_send_form_email_<?php echo $form_id;?>” ><?php echo $btn_form_submit_label; ?></button>
<?php
if($btn_reset_required == 1) {
…
The topic ‘Form submit tracking Google Analytics’ is closed to new replies.