diff --git a/includes/classes/class-upgrade.php b/includes/classes/class-upgrade.php index ee0bd3f80..333899864 100644 --- a/includes/classes/class-upgrade.php +++ b/includes/classes/class-upgrade.php @@ -329,45 +329,6 @@ private function is_custom_field_for_migration( $field ) { return false; } - /** - * Normalize field options to array without losing legacy data. - * - * Supports array, object, serialized string, and JSON string formats. - * - * @param mixed $options Raw field options. - * @return array - */ - private function normalize_field_options( $options ) { - if ( is_array( $options ) ) { - return $options; - } - - if ( is_object( $options ) ) { - $normalized = json_decode( wp_json_encode( $options ), true ); - return is_array( $normalized ) ? $normalized : array(); - } - - if ( is_string( $options ) && '' !== $options ) { - $unserialized = maybe_unserialize( $options ); - - if ( is_array( $unserialized ) ) { - return $unserialized; - } - - if ( is_object( $unserialized ) ) { - $normalized = json_decode( wp_json_encode( $unserialized ), true ); - return is_array( $normalized ) ? $normalized : array(); - } - - $decoded = json_decode( $options, true ); - if ( JSON_ERROR_NONE === json_last_error() && is_array( $decoded ) ) { - return $decoded; - } - } - - return array(); - } - /** * Get conditional logic from field safely. * diff --git a/readme.txt b/readme.txt index fdb83c635..70d54ec49 100644 --- a/readme.txt +++ b/readme.txt @@ -306,7 +306,7 @@ Directorist comes with an AI-powered directory builder. Use the Create with AI o == Changelog == -= 8.6 - Feb 25, 2026 = += 8.6 - Mar 3, 2026 = **Added** - Conditional Logic support across all form fields in both Listing Form and Search Form. Fields can now dynamically show or hide based on other field values, allowing more advanced and flexible form configurations. (#2711) diff --git a/templates/listing-form/custom-fields/checkbox.php b/templates/listing-form/custom-fields/checkbox.php index 6461298c1..9089a1cd6 100644 --- a/templates/listing-form/custom-fields/checkbox.php +++ b/templates/listing-form/custom-fields/checkbox.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 7.5.4 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/listing-form/custom-fields/color_picker.php b/templates/listing-form/custom-fields/color_picker.php index e7d058d16..333dada05 100644 --- a/templates/listing-form/custom-fields/color_picker.php +++ b/templates/listing-form/custom-fields/color_picker.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 7.3.0 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/listing-form/custom-fields/date.php b/templates/listing-form/custom-fields/date.php index a84252188..22cd85169 100644 --- a/templates/listing-form/custom-fields/date.php +++ b/templates/listing-form/custom-fields/date.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 6.7 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/listing-form/custom-fields/file.php b/templates/listing-form/custom-fields/file.php index 199efccc0..dcfeb31a5 100644 --- a/templates/listing-form/custom-fields/file.php +++ b/templates/listing-form/custom-fields/file.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 7.3.3 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/listing-form/custom-fields/number.php b/templates/listing-form/custom-fields/number.php index 0e0e8974e..b96ac92db 100644 --- a/templates/listing-form/custom-fields/number.php +++ b/templates/listing-form/custom-fields/number.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 8.0 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/listing-form/custom-fields/radio.php b/templates/listing-form/custom-fields/radio.php index 64d8c5534..00fdd3a47 100644 --- a/templates/listing-form/custom-fields/radio.php +++ b/templates/listing-form/custom-fields/radio.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 6.7 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/listing-form/custom-fields/select.php b/templates/listing-form/custom-fields/select.php index a8e970908..ac8d2b9fc 100644 --- a/templates/listing-form/custom-fields/select.php +++ b/templates/listing-form/custom-fields/select.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 7.3.0 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/listing-form/custom-fields/text.php b/templates/listing-form/custom-fields/text.php index 8b3a551bc..79e0b0cae 100644 --- a/templates/listing-form/custom-fields/text.php +++ b/templates/listing-form/custom-fields/text.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 6.7 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/listing-form/custom-fields/textarea.php b/templates/listing-form/custom-fields/textarea.php index 2017afe61..ce6ce380a 100644 --- a/templates/listing-form/custom-fields/textarea.php +++ b/templates/listing-form/custom-fields/textarea.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 7.4.0 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/listing-form/custom-fields/time.php b/templates/listing-form/custom-fields/time.php index fce05d935..574eb1304 100644 --- a/templates/listing-form/custom-fields/time.php +++ b/templates/listing-form/custom-fields/time.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 7.0.5.3 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/listing-form/custom-fields/url.php b/templates/listing-form/custom-fields/url.php index e32897edc..95373f373 100644 --- a/templates/listing-form/custom-fields/url.php +++ b/templates/listing-form/custom-fields/url.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 6.7 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/listing-form/fields/address.php b/templates/listing-form/fields/address.php index 89aea84b4..81abda5ef 100644 --- a/templates/listing-form/fields/address.php +++ b/templates/listing-form/fields/address.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 7.0.5.6 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/listing-form/fields/category.php b/templates/listing-form/fields/category.php index a9de50f44..b6e1bea82 100644 --- a/templates/listing-form/fields/category.php +++ b/templates/listing-form/fields/category.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.7 - * @version 7.8.0 + * @version 8.6 */ $placeholder = $data['placeholder'] ?? ''; diff --git a/templates/listing-form/fields/description.php b/templates/listing-form/fields/description.php index 259806605..e2f6bb82a 100644 --- a/templates/listing-form/fields/description.php +++ b/templates/listing-form/fields/description.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 7.4.0 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/listing-form/fields/email.php b/templates/listing-form/fields/email.php index ebfa7fa41..5b4db473f 100644 --- a/templates/listing-form/fields/email.php +++ b/templates/listing-form/fields/email.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 6.7 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/listing-form/fields/excerpt.php b/templates/listing-form/fields/excerpt.php index 9c5176bbd..aa4df1669 100644 --- a/templates/listing-form/fields/excerpt.php +++ b/templates/listing-form/fields/excerpt.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 7.0.5.6 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/listing-form/fields/fax.php b/templates/listing-form/fields/fax.php index 799612b83..dba98e0f0 100644 --- a/templates/listing-form/fields/fax.php +++ b/templates/listing-form/fields/fax.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 6.7 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/listing-form/fields/hide_contact_owner.php b/templates/listing-form/fields/hide_contact_owner.php index 676c1d007..083f44daa 100644 --- a/templates/listing-form/fields/hide_contact_owner.php +++ b/templates/listing-form/fields/hide_contact_owner.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 6.7 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/listing-form/fields/image_upload.php b/templates/listing-form/fields/image_upload.php index 2eeb67a0f..0f1abc420 100644 --- a/templates/listing-form/fields/image_upload.php +++ b/templates/listing-form/fields/image_upload.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 7.7.0 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/listing-form/fields/listing-type.php b/templates/listing-form/fields/listing-type.php index a9a45ab98..5c9d771fd 100644 --- a/templates/listing-form/fields/listing-type.php +++ b/templates/listing-form/fields/listing-type.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 6.7 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/listing-form/fields/location.php b/templates/listing-form/fields/location.php index 985c91fb2..f487d0ae2 100644 --- a/templates/listing-form/fields/location.php +++ b/templates/listing-form/fields/location.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.7 - * @version 7.8.0 + * @version 8.6 */ $placeholder = $data['placeholder'] ?? ''; diff --git a/templates/listing-form/fields/map.php b/templates/listing-form/fields/map.php index b004dd018..dd045cec5 100644 --- a/templates/listing-form/fields/map.php +++ b/templates/listing-form/fields/map.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 7.4.0 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/listing-form/fields/phone.php b/templates/listing-form/fields/phone.php index b12115691..3420755ae 100644 --- a/templates/listing-form/fields/phone.php +++ b/templates/listing-form/fields/phone.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 6.7 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/listing-form/fields/phone2.php b/templates/listing-form/fields/phone2.php index abe0d2d30..1f428450e 100644 --- a/templates/listing-form/fields/phone2.php +++ b/templates/listing-form/fields/phone2.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 6.7 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/listing-form/fields/pricing.php b/templates/listing-form/fields/pricing.php index 798f0a6df..b45f92cdc 100644 --- a/templates/listing-form/fields/pricing.php +++ b/templates/listing-form/fields/pricing.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 8.2 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/listing-form/fields/social_info.php b/templates/listing-form/fields/social_info.php index 5c80f30ae..b16b16c92 100644 --- a/templates/listing-form/fields/social_info.php +++ b/templates/listing-form/fields/social_info.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 6.7 + * @version 8.6 */ use \Directorist\Helper; diff --git a/templates/listing-form/fields/tag.php b/templates/listing-form/fields/tag.php index 87bd5630e..a62a2b760 100644 --- a/templates/listing-form/fields/tag.php +++ b/templates/listing-form/fields/tag.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.7 - * @version 7.8.0 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) { diff --git a/templates/listing-form/fields/tagline.php b/templates/listing-form/fields/tagline.php index c994d78a8..1200a4d05 100644 --- a/templates/listing-form/fields/tagline.php +++ b/templates/listing-form/fields/tagline.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 6.7 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/listing-form/fields/terms_privacy.php b/templates/listing-form/fields/terms_privacy.php index 44369cfb8..35f2ec65d 100644 --- a/templates/listing-form/fields/terms_privacy.php +++ b/templates/listing-form/fields/terms_privacy.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 8.0 - * @version 8.0 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/listing-form/fields/title.php b/templates/listing-form/fields/title.php index 8e3a2dcc1..4e9973a36 100644 --- a/templates/listing-form/fields/title.php +++ b/templates/listing-form/fields/title.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 6.7 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/listing-form/fields/video.php b/templates/listing-form/fields/video.php index 8d6b7edad..b6787a30a 100644 --- a/templates/listing-form/fields/video.php +++ b/templates/listing-form/fields/video.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 6.7 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/listing-form/fields/website.php b/templates/listing-form/fields/website.php index 5dbd2d05a..c0384dee6 100644 --- a/templates/listing-form/fields/website.php +++ b/templates/listing-form/fields/website.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 6.7 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/listing-form/fields/zip.php b/templates/listing-form/fields/zip.php index f13b484e3..95ea17def 100644 --- a/templates/listing-form/fields/zip.php +++ b/templates/listing-form/fields/zip.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 7.0.5.3 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/search-form/custom-fields/checkbox.php b/templates/search-form/custom-fields/checkbox.php index ba920b9e7..a3b1612c8 100644 --- a/templates/search-form/custom-fields/checkbox.php +++ b/templates/search-form/custom-fields/checkbox.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 8.0 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/search-form/custom-fields/color_picker.php b/templates/search-form/custom-fields/color_picker.php index d6a925623..a337dcc9a 100644 --- a/templates/search-form/custom-fields/color_picker.php +++ b/templates/search-form/custom-fields/color_picker.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 7.3.0 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/search-form/custom-fields/date.php b/templates/search-form/custom-fields/date.php index 630ee496c..60f6868e2 100644 --- a/templates/search-form/custom-fields/date.php +++ b/templates/search-form/custom-fields/date.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 7.0.5.3 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/search-form/custom-fields/number.php b/templates/search-form/custom-fields/number.php index 035d7ccb4..50d9e1895 100644 --- a/templates/search-form/custom-fields/number.php +++ b/templates/search-form/custom-fields/number.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 8.0 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/search-form/custom-fields/number/dropdown.php b/templates/search-form/custom-fields/number/dropdown.php index fb15d352e..ab0ab8a6b 100644 --- a/templates/search-form/custom-fields/number/dropdown.php +++ b/templates/search-form/custom-fields/number/dropdown.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 8.0 - * @version 8.0 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/search-form/custom-fields/number/radio.php b/templates/search-form/custom-fields/number/radio.php index d1ab0a42d..341cc4c08 100644 --- a/templates/search-form/custom-fields/number/radio.php +++ b/templates/search-form/custom-fields/number/radio.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 8.0 - * @version 8.0 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/search-form/custom-fields/number/range.php b/templates/search-form/custom-fields/number/range.php index e2961827d..7dfd8f94d 100644 --- a/templates/search-form/custom-fields/number/range.php +++ b/templates/search-form/custom-fields/number/range.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 8.0 - * @version 8.0 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/search-form/custom-fields/radio.php b/templates/search-form/custom-fields/radio.php index 4e35c95be..16a8e5322 100644 --- a/templates/search-form/custom-fields/radio.php +++ b/templates/search-form/custom-fields/radio.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 8.0 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/search-form/custom-fields/select.php b/templates/search-form/custom-fields/select.php index 42e3d31a3..17df8a8bf 100644 --- a/templates/search-form/custom-fields/select.php +++ b/templates/search-form/custom-fields/select.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 7.5.4 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/search-form/custom-fields/text.php b/templates/search-form/custom-fields/text.php index b648eb0f7..4cb860a3d 100644 --- a/templates/search-form/custom-fields/text.php +++ b/templates/search-form/custom-fields/text.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 6.7 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/search-form/custom-fields/textarea.php b/templates/search-form/custom-fields/textarea.php index fd535a58e..e34dd39b3 100644 --- a/templates/search-form/custom-fields/textarea.php +++ b/templates/search-form/custom-fields/textarea.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 6.7 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/search-form/custom-fields/time.php b/templates/search-form/custom-fields/time.php index 4e7f9d442..36a92a63a 100644 --- a/templates/search-form/custom-fields/time.php +++ b/templates/search-form/custom-fields/time.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 8.0.0 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/search-form/custom-fields/url.php b/templates/search-form/custom-fields/url.php index cd6433478..431aba68a 100644 --- a/templates/search-form/custom-fields/url.php +++ b/templates/search-form/custom-fields/url.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 7.7.0 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/search-form/fields/category.php b/templates/search-form/fields/category.php index 8b66144b2..0b0373720 100644 --- a/templates/search-form/fields/category.php +++ b/templates/search-form/fields/category.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 8.0 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/search-form/fields/email.php b/templates/search-form/fields/email.php index aea891ede..79eb8c3a5 100644 --- a/templates/search-form/fields/email.php +++ b/templates/search-form/fields/email.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 8.0 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/search-form/fields/fax.php b/templates/search-form/fields/fax.php index 8f851ff79..d4da44df6 100644 --- a/templates/search-form/fields/fax.php +++ b/templates/search-form/fields/fax.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 8.0 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/search-form/fields/location.php b/templates/search-form/fields/location.php index 53633b9a6..4d984c30c 100644 --- a/templates/search-form/fields/location.php +++ b/templates/search-form/fields/location.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 8.3.1 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/search-form/fields/phone.php b/templates/search-form/fields/phone.php index afbf2fdc3..cd8bfc30a 100644 --- a/templates/search-form/fields/phone.php +++ b/templates/search-form/fields/phone.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 8.0 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/search-form/fields/phone2.php b/templates/search-form/fields/phone2.php index a18055784..e191f38b4 100644 --- a/templates/search-form/fields/phone2.php +++ b/templates/search-form/fields/phone2.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 8.0 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/search-form/fields/pricing.php b/templates/search-form/fields/pricing.php index 3c398d34e..d2b2354e9 100644 --- a/templates/search-form/fields/pricing.php +++ b/templates/search-form/fields/pricing.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 8.0 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/search-form/fields/radius_search.php b/templates/search-form/fields/radius_search.php index b052be195..3556d295c 100644 --- a/templates/search-form/fields/radius_search.php +++ b/templates/search-form/fields/radius_search.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 8.5 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/search-form/fields/review.php b/templates/search-form/fields/review.php index f97331ed6..31dda93e7 100644 --- a/templates/search-form/fields/review.php +++ b/templates/search-form/fields/review.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 7.7.0 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/search-form/fields/tag.php b/templates/search-form/fields/tag.php index 64a1e8a48..933b6331a 100644 --- a/templates/search-form/fields/tag.php +++ b/templates/search-form/fields/tag.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 8.0 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/search-form/fields/title.php b/templates/search-form/fields/title.php index 97709580d..ce85e1922 100644 --- a/templates/search-form/fields/title.php +++ b/templates/search-form/fields/title.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 8.0 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/search-form/fields/website.php b/templates/search-form/fields/website.php index fefeb362e..032d86006 100644 --- a/templates/search-form/fields/website.php +++ b/templates/search-form/fields/website.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 8.0 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit; diff --git a/templates/search-form/fields/zip.php b/templates/search-form/fields/zip.php index 2da8c00e5..b485ba006 100644 --- a/templates/search-form/fields/zip.php +++ b/templates/search-form/fields/zip.php @@ -2,7 +2,7 @@ /** * @author wpWax * @since 6.6 - * @version 8.0 + * @version 8.6 */ if ( ! defined( 'ABSPATH' ) ) exit;