Hi!
We found a strange bug that appears in chrome and when the page is refreshed. The script adds the form to the wrong place where the widget is inserted, and below the footer https://prntscr.com/ksp1mw
Quite a strange behavior, perhaps because the form container is inserted with a js, and the script executes in the wrong sequence.
We added the plugin parameter – $target_container to accurately bind the form to the desired location. That helped.
https://prntscr.com/ksox34
https://prntscr.com/ksox8j
Please, maybe you add this option – $target_container, or revise the order of execution of scripts, so that the script can run on the document ready etc
Thanks!
]]>Hi there!
i noticed a problem, if user role < than administrator, it can’t edit pages (e.g. Editor user role). To fix an issue, replace
if ( ! current_user_can( 'manage_options' ) )
wp_die( __( 'You do not have sufficient permissions to manage options for this site.' ) );
with
if ( ! current_user_can( 'manage_options' ) ) {
return;
}
in \integration-with-hubspot-forms\templates\popup.php file
]]>When I activate the plugin and then go to pages or posts, the list of available pages and posts are empty. As soon as I disable the plugin the lists of posts and pages are back and functioning.
Any thoughts on the cause?
]]>The forms are not displaying. There is an error reading:
Uncaught ReferenceError: hbspt is not defined
at (index):469
I have two forms on a single page and the plugin currently embed the JS with each form call causing JS conflicts. Can you kindly update this to only call once no matter how many forms on a page?
]]>