Home › Forums › Backend Issues (wp-admin) › Datepicker is not a function › Reply To: Datepicker is not a function
This makes sense, but the code the order give by @yousan will cause other problem, like a “headers already sent” error.
If you must do this then I would suggest adding an output buffer to prevent the error, and to be honest I’m not sure this won’t cause other problems.
<?php
ob_start();
get_header();
acf_form_head(); // <--- here!
echo ob_get_clean();
?>
Welcome to the Advanced Custom Fields community forum.
Browse through ideas, snippets of code, questions and answers between fellow ACF users
Helping others is a great way to earn karma, gain badges and help ACF development!
We use cookies to offer you a better browsing experience, analyze site traffic and personalize content. Read about how we use cookies and how you can control them in our Privacy Policy. If you continue to use this site, you consent to our use of cookies.