Advertisement
Guest User

Untitled

a guest
Oct 14th, 2015
121
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.70 KB | None | 0 0
  1. in custom_fields.php, on line 222 I've added:
  2. <option value="text">Text</option>
  3. In asp.shortcode.custom_fields.php I've added in line 60:
  4. <?php case "text": ?>
  5.         <input type="hidden" value="<?php echo $item->asp_f_hidden_value; ?>" id="aspf<?php echo $_in; ?>[<?php echo $item->asp_f_field; ?>]" name="aspf[<?php echo $item->asp_f_field; ?>]">
  6. In search_indextable.class.php I've changed the line 355:
  7. } else if ( ($data->asp_f_type == 'radio' || $data->asp_f_type == 'hidden' || $data->asp_f_type == 'text') && isset($posted)) {
  8. Also in search_content.class.php on line 423:
  9. } else if ( ( $data->asp_f_type == 'radio' || $data->asp_f_type == 'hidden' || $data->asp_f_type == 'text' ) && isset( $posted ) ) {
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement