Forum Replies Created
Viewing 1 post (of 1 total)
- AuthorPosts
alimaserrat
ParticipantHi Support:
I have Contracted the HubSpot, and apparently, as the QuForm is generating a Unique ID for each submission the HubSpot backend is counting each as a new form completely.
I did some research on your forum and someone recommended adding the following to the Function of Theme however, even with this solution each page will have its own unique Form ID.I was wondering if there is any solution to correct this issue, as I’m sure many companies are using HubSpot integration.
add_action(‘quform_pre_display’, function (Quform_Form $form) {
static $count = 1;
$form->setUniqueId(‘Form’ . $count++);
});
- AuthorPosts
Viewing 1 post (of 1 total)