Support

Account

Home Forums Backend Issues (wp-admin) Generate/Create value of field based on another Reply To: Generate/Create value of field based on another

  • John – Thank you for the reply. I am attempting to use the JS solution. However, I cannot seem to get the JS to trigger. This is what I have included

    <?php
    function my_acf_input_admin_footer() {
    ?>
    <script type=”text/javascript”>
    (function($) {
    alert(“ready now”);
    })(jQuery);
    </script>
    <?php
    }
    add_action(‘acf/input/admin_footer’, ‘my_acf_input_admin_footer’);
    ?>

    I do not see the alert though. Nor do I see this script when I view source of the page.

    Advice/pointers?