RY City Select за WooCommerce

Опис

Овај додатак је заснован на WC City Select

WooCommerce uses a text input for the customers to enter the city or town.
With this plugin you can provide a list of cities to be shown as a select dropdown.

This will be shown in checkout pages, edit addresses pages and shipping calculator if it’s configured that way.

After selected the city or town, auto set the postcode number if is defined.

How to add cities

A list of cities can be added in your theme functions.php file.

Use ry_wc_city_select_cities filter to load your cities.
This is done similarly to Add/Modify States.
It should be added on your functions.php or a custom plugin.

add_filter( 'ry_wc_city_select_cities', 'my_cities' );
/**
 * Replace XX with the country code. Instead of YYY, ZZZ use actual state codes.
 * The City list can list of city name with postcode or just city name.
 */
function my_cities( $cities ) {
    $cities['XX'] = array(
        'YYY' => array( // city name with postcoe
            ['City', '100'],
            ['Another City', '101']
        ),
        'ZZZ' => array( // just city name
            'City 3',
            'City 4'
        )
    );
    return $cities;
}

Постављање

Minimum Requirements

  • PHP 8.0+
  • WordPress 6.6+
  • WooCommerce 8.0+

ЧПП

Where can I contribute the cities list of my country?

Молимо вас да користите GitHub репозиторијум. Користите issuu да ми дате листу, или користите pull захтеве за промену датотеке.

Ако ваша земља нема листу држава у WooCommerce-у (погледајте датотеку /woocommerce/i18n/states.php). Такође је потребно да допринесете листи држава.

Пример датотеке је cities/TW.php и states/TW.php.

Где могу да пријавим грешке или допринесем пројекту?

Пријавите грешке на GitHub складишту, или на мојој личној страници веб сајта.

Списак свих градова са http://geonames.org/

Са RY-WC-City-Select-cities-files можете додати скоро све главне државе и градове у свету. Али неке државе или градови могу користити различито име од званичног имена.

Да бисте омогућили податке са geonames.org, додајте код у functions.php ваше теме. Или користите Code Snippets [https://wordpress.org/plugins/code-snippets/] да додате код.

add_filter('ry_wcs_load_geonames_org', '__return_true');

Прегледи

18. август 2023.
Good plugin, but the names of cities in my country Armenia are incorrect, please correct it.The list of cities in Armenia can be found on wikipedia site in the search you need to type „List of cities and towns in Armenia“it’s not much, only 49 pieces. please fix in zip archive \geonames-org-data\cities\AM.php
Види свих 9 прегледа

Сарадници и градитељи

„RY City Select за WooCommerce“ је софтвер отвореног кода. Следећи људи су допринели овом додатку.

Сарадници

„RY City Select за WooCommerce“ је преведен на 3 језика. Хвала преводиоцима за њихове доприносе.

Преведите „RY City Select за WooCommerce“ на свој језик.

Заинтересовани сте за градњу?

Прегледајте код, проверите SVN складиште или се пријавите на белешку градње преко RSS-а.

Белешка о изменама

2.1.9 – 2025/04/29

  • Change minimum requires to WordPress 6.6

2.1.8 – 2025/02/17

  • Отклоњена грешка у текст-домену.
  • Smaller cities name list file.

2.1.6 – 2025/02/07

  • Update language .pot file.

2.1.5 – 2025/02/07

  • Fixed the error default setting.

2.1.4 – 2025/02/04

  • Update postal code for Romania state Sibiu (#9).

2.1.3 – 2025/02/02

  • Update cities for Romania state Sibiu (#8).

2.1.2 – 2024/11/21

  • Change WordPress croe required / tested version info.
  • Change PHP required version info.

2.1.0 – 2024/03/022

  • CHANGE Plugin name.

2.0.1 – 2023/08/26

  • Фиксно мењање града можда неће омогућити уређивање поштанског броја.

2.0.0 – 2023/04/23

  • CHANGE License to GPLv3.

1.1.3.1 – 2023/03/30

  • Change WordPress croe tested version info.

1.1.3 – 2023/02/13

  • Change main class name.

1.1.2 – 2022/07/16

  • Change plugin info.

1.1.1 – 2022/06-03

  • add Romanian cities. (by condor2)

1.1.0 – 2022/04/04

  • поштански број уклони са означеним без поштанског броја град (издање #6)
  • промени HTML стил поља обрасца да више личи на WooCommerce

1.0.0 – 2019/12/07

  • Прво издање