Override the field value for the search field when the search button is clicked
-
Is it possible to override the field value for the search field when the search button is clicked?
I found how to do this for any fields in the login form using pdb-before_submit_signup
function newValue( $fields ) { $fields['myField'] = "111"; return $fields; } add_filter( 'pdb-before_submit_signup', 'newValue' );
but I don’t understand how to do this for the search field
Viewing 6 replies - 1 through 6 (of 6 total)
Viewing 6 replies - 1 through 6 (of 6 total)
- The topic ‘Override the field value for the search field when the search button is clicked’ is closed to new replies.