Edit File by line
/home/zeestwma/richards.../wp-conte.../plugins/wpforms-.../template.../admin/forms
File: search-box.php
<?php
[0] Fix | Delete
/**
[1] Fix | Delete
* Search box on forms overview page.
[2] Fix | Delete
*
[3] Fix | Delete
* @since 1.7.2
[4] Fix | Delete
*
[5] Fix | Delete
* @var string $term_input_id Term input id.
[6] Fix | Delete
* @var string $text Button text.
[7] Fix | Delete
* @var string $search_term Current search term.
[8] Fix | Delete
*/
[9] Fix | Delete
[10] Fix | Delete
if ( ! defined( 'ABSPATH' ) ) {
[11] Fix | Delete
exit;
[12] Fix | Delete
}
[13] Fix | Delete
[14] Fix | Delete
?>
[15] Fix | Delete
<p class="search-box wpforms-forms-search-box">
[16] Fix | Delete
[17] Fix | Delete
<label class="screen-reader-text" for="<?php echo esc_attr( $term_input_id ); ?>"><?php echo esc_html( $text ); ?>:</label>
[18] Fix | Delete
<input type="search"
[19] Fix | Delete
name="search[term]"
[20] Fix | Delete
class="wpforms-forms-search-box-term"
[21] Fix | Delete
value="<?php echo esc_attr( $search_term ); ?>"
[22] Fix | Delete
id="<?php echo esc_attr( $term_input_id ); ?>">
[23] Fix | Delete
[24] Fix | Delete
<button type="submit" class="button"><?php echo esc_html( $text ); ?></button>
[25] Fix | Delete
</p>
[26] Fix | Delete
[27] Fix | Delete
It is recommended that you Edit text format, this type of Fix handles quite a lot in one request
Function