Reply To: The field "Show search in custom post types selectors" is not saving

Home Forums Bug reporting, Questions & Suggestions Ajax Search Pro for WordPress The field "Show search in custom post types selectors" is not saving Reply To: The field "Show search in custom post types selectors" is not saving

#731
anoxy
anoxy
Participant

I solved the issue,
there was a simple quote missing on the following line in the file:

settings/class/customposttypeseditable.class.php

line: 37

<input type='hidden' value=" . $this->data . " name='" . $this->name . "'>";

should be

<input type='hidden' value='" . $this->data . "' name='" . $this->name . "'>";