Plugin Directory

Changeset 3319736


Ignore:
Timestamp:
06/30/2025 07:31:55 AM (9 months ago)
Author:
trustyplugins
Message:

readme.txt

Location:
country-state-city-auto-dropdown/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • country-state-city-auto-dropdown/trunk/country-state-city-dropdown-cf7.php

    r3103394 r3319736  
    33Plugin Name: Country State City Dropdown CF7
    44Description: 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.4
     5Version: 2.7.5
    66Author: Trusty Plugins
    77Author URI: https://trustyplugins.com
  • country-state-city-auto-dropdown/trunk/includes/city-dropdown.php

    r3089262 r3319736  
    4040    $st_tag = wpcf7_scan_form_tags(array('type' => array('state_auto*', 'state_auto')));
    4141    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.'">';
    4343        $html .= '<select ' . $atts . ' >';
    4444        $html .= '<option value="0" data-id="0">Select City</option>';
  • country-state-city-auto-dropdown/trunk/includes/country-dropdown.php

    r3089262 r3319736  
    3838    $atts = wpcf7_format_atts($atts);
    3939
    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.'">';
    4141    $html .= '<select ' . $atts . ' >';
    4242    $html .= '<option value="0" data-id="0" >Select Country</option>';
  • country-state-city-auto-dropdown/trunk/includes/state-dropdown.php

    r3089262 r3319736  
    3939    $cnt_tag = wpcf7_scan_form_tags(array('type' => array('country_auto*', 'country_auto')));
    4040    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.'">';
    4242        $html .= '<select ' . $atts . ' >';
    4343        $html .= '<option value="0" data-id="0">Select State</option>';
  • country-state-city-auto-dropdown/trunk/readme.txt

    r3299138 r3319736  
    55Requires at least: 4.8
    66Tested up to: 6.8
    7 Stable tag: 2.7.4
     7Stable tag: 2.7.5
    88Requires PHP: 5.6
    99License: GPLv2 or later
     
    8181
    8282== Changelog ==
     83= 2.7.5 =
     84* Validation error issue has been fixed.
     85
     86== Changelog ==
    8387= 2.7.4 =
    8488* State, City List not appending (Issue Fixed)
Note: See TracChangeset for help on using the changeset viewer.