### [wpforms_form_pages_footer](https://wpforms.com/developers/wpforms_form_pages_footer/)

**Published:** June 11, 2021
**Author:** David Ozokoye

**Excerpt:** The wpforms_form_pages_footer  action is triggered at the end of the template that is used with the Form Pages addon.


**Content:**

## Description

The `wpforms_form_pages_footer` action is triggered at the end of the page load for the template used for the Form Pages addon.

## Parameters

This action does not accept any parameters.

## More Information

This action works much like the standard WordPress `wp_footer` action. It will run at the end of the page load, but specifically for the `wpforms_form_pages_footer` action, it will only fire on the form page template.

This is especially useful if you have any custom JavaScript for the template used with the [Form Page addon](https://wpforms.com/docs/how-to-install-and-use-the-form-pages-addon/ "Form Pages Addon").

## Source

`wpforms-form-pages/src/Frontend.php`

## Examples

The example below will show you how to disable past times from a time picker inside your Form Pages form.

```

/**
 * Action to be called once Form Page has completely loaded
 *
 * @link https://wpforms.com/developers/wpforms_form_pages_footer/
 */
  
function wpf_dev_form_pages_script() {
    ?>

**Categories:** Actions Hooks

**Tags:** Javascript, JS, PHP

---

