<html lang="pt-br" dir="ltr"><head></head><body>### [wpforms_conversational_forms_start_button_disabled](https://wpforms.com/developers/wpforms_conversational_forms_start_button_disabled/)

**Published:** June 14, 2022
**Author:** David Ozokoye

**Excerpt:** The wpforms_conversational_forms_start_button_disabled filter is used to determine if the Start and Enter links that are displayed on conversational forms should be disabled. 

**Content:**

## Description

The `wpforms_conversational_forms_start_button_disabled` filter is used to determine if the **Start** and **Enter** links that are displayed on conversational forms should be disabled.

## Parameters

$disabled*(bool)* Determines if the **Start** and **Enter** links displayed just before the form loads should be disabled. Default is false (enabled).## Source

`wpforms-conversational-forms/src/Frontend.php`

## More Information

The `wpforms_conversational_forms_start_button_disabled` filter can be used to hide the **Start** and **Enter** links that are displayed by default when a form loads for all forms created with the [Conversational Form addon](https://wpforms.com/docs/how-to-install-and-use-the-conversational-forms-addon/ "Conversational Forms Addon").

## Example

```

/**
 * Disable the start and enter links at the top of a conversational form.
 *
 * @link   https://wpforms.com/developers/wpforms_conversational_forms_start_button_disabled/
 *
 * @param  bool $disabled  Default is false (enabled).
 * @return bool
 */
 
add_filter( 'wpforms_conversational_forms_start_button_disabled', '__return_true', 15 );
```

**Categories:** Filters Hooks

**Tags:** Conversational Forms, PHP

---

</body></html>