Changeset 3319736
- Timestamp:
- 06/30/2025 07:31:55 AM (9 months ago)
- Location:
- country-state-city-auto-dropdown/trunk
- Files:
-
- 5 edited
-
country-state-city-dropdown-cf7.php (modified) (1 diff)
-
includes/city-dropdown.php (modified) (1 diff)
-
includes/country-dropdown.php (modified) (1 diff)
-
includes/state-dropdown.php (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
country-state-city-auto-dropdown/trunk/country-state-city-dropdown-cf7.php
r3103394 r3319736 3 3 Plugin Name: Country State City Dropdown CF7 4 4 Description: Add country, state and city auto drop down for CONTACT FORM 7. State will auto populate in SELECT field according to selected country and city will auto populate according to selected state. 5 Version: 2.7. 45 Version: 2.7.5 6 6 Author: Trusty Plugins 7 7 Author URI: https://trustyplugins.com -
country-state-city-auto-dropdown/trunk/includes/city-dropdown.php
r3089262 r3319736 40 40 $st_tag = wpcf7_scan_form_tags(array('type' => array('state_auto*', 'state_auto'))); 41 41 if ($cnt_tag && $st_tag) { 42 $html = '<span class="wpcf7-form-control-wrap city_auto ' . $tag->name . '" >';42 $html = '<span class="wpcf7-form-control-wrap city_auto ' . $tag->name . '" data-name="'.$tag->name.'">'; 43 43 $html .= '<select ' . $atts . ' >'; 44 44 $html .= '<option value="0" data-id="0">Select City</option>'; -
country-state-city-auto-dropdown/trunk/includes/country-dropdown.php
r3089262 r3319736 38 38 $atts = wpcf7_format_atts($atts); 39 39 40 $html = '<span class="wpcf7-form-control-wrap country_auto ' . $tag->name . '" >';40 $html = '<span class="wpcf7-form-control-wrap country_auto ' . $tag->name . '" data-name="'.$tag->name.'">'; 41 41 $html .= '<select ' . $atts . ' >'; 42 42 $html .= '<option value="0" data-id="0" >Select Country</option>'; -
country-state-city-auto-dropdown/trunk/includes/state-dropdown.php
r3089262 r3319736 39 39 $cnt_tag = wpcf7_scan_form_tags(array('type' => array('country_auto*', 'country_auto'))); 40 40 if ($cnt_tag) { 41 $html = '<span class="wpcf7-form-control-wrap state_auto ' . $tag->name . '" >';41 $html = '<span class="wpcf7-form-control-wrap state_auto ' . $tag->name . '" data-name="'.$tag->name.'">'; 42 42 $html .= '<select ' . $atts . ' >'; 43 43 $html .= '<option value="0" data-id="0">Select State</option>'; -
country-state-city-auto-dropdown/trunk/readme.txt
r3299138 r3319736 5 5 Requires at least: 4.8 6 6 Tested up to: 6.8 7 Stable tag: 2.7. 47 Stable tag: 2.7.5 8 8 Requires PHP: 5.6 9 9 License: GPLv2 or later … … 81 81 82 82 == Changelog == 83 = 2.7.5 = 84 * Validation error issue has been fixed. 85 86 == Changelog == 83 87 = 2.7.4 = 84 88 * State, City List not appending (Issue Fixed)
Note: See TracChangeset
for help on using the changeset viewer.