Hey there, @snehanegi04 👋
Poking around your page, it looks like your WordPress theme is missing wp_footer function call in source files. Would you mind double-checking that and inserting the function right before the </body> ending tag? That should patch it up for you.
Let us know how you go! 🙂
Hi Team,
We have added wp_footer() function still we are getting response in JSON Format, kindly help us resolving this issue.
For example code:
<!doctype html>
<html style=”margin-top:0px !important;”>
<body>
<?php
/*
Template Name: register
*/
echo do_shortcode(‘[happyforms id=”1156″ /]’);
wp_footer();?>
</body>
<?php
//wp_footer();
?>
</html>
Thanks, @snehanegi04! Footer scripts are now showing up successfully. Good job! 👏
To ensure HappyForms is working correctly and is loading all its dependencies, you’ll need to add wp_head() function before the </head> ending tag. Would you mind adding that one in too? That should fix it up right away.
Hope this helps!