RY City Select for WooCommerce

Beschrijving

Deze plugin is gebaseerd op 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.

Dit wordt weergegeven op de afrekenpagina’s, op de pagina’s voor het bewerken van adressen en op de verzendcalculator als dit op die manier is geconfigureerd.

Nadat je de stad of gemeente hebt geselecteerd, wordt het postcodenummer automatisch ingesteld als dit is gedefinieerd.

Hoe voeg ik steden toe

Een lijst met steden kan worden toegevoegd aan je thema functions.php bestand.

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;
}

Installatie

Minimale vereisten

  • PHP 8.0+
  • WordPress 6.3+
  • WooCommerce 8.0+

FAQ

Waar kan ik de stedenlijst van mijn land bijdragen?

Please use GitHub repository.
Use issuu give me the list, or use pull requests the file change.

If your country don’t have states list in woocommerce (see file /woocommerce/i18n/states.php).
You also need contribute the states list.

Het voorbeeldbestand is cities/TW.php en states/TW.php

Waar kan ik problemen melden of bijdragen aan het project?

Report bugs on the GitHub repository,
or my person website page.

All cities list from http://geonames.org/

From the RY-WC-City-Select-cities-files
You can add almost main states and cities list in the world.
But some state or city may use different name with the official name.

To enable geonames.org data, add code into you theme functions.php.
Or use Code Snippets[https://wordpress.org/plugins/code-snippets/] to add code.

add_filter('ry_wcs_load_geonames_org', '__return_true');

Beoordelingen

18 augustus 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
Lees alle 7 beoordelingen

Bijdragers & ontwikkelaars

“RY City Select for WooCommerce” is open source software. De volgende personen hebben bijgedragen aan deze plugin.

Bijdragers

“RY City Select for WooCommerce” is vertaald in 3 talen. Dank voor de vertalers voor hun bijdragen.

Vertaal “RY City Select for WooCommerce” naar jouw taal.

Interesse in de ontwikkeling?

Bekijk de code, haal de SVN repository op, of abonneer je op het ontwikkellog via RSS.

Changelog

2.1.0 – 2024/03/022

  • CHANGE Plugin name.

2.0.1 – 2023/08/26

  • Fixed change city maynot edit the zip code.

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

  • Plugin info wijzigen

1.1.1 – 2022/06-03

  • Roemeense steden toevoegen. (door condor2)

1.1.0 – 2022/04/04

  • postal code clear with selected no postal code city (issuu #6)
  • verander de htmlbstijl van het formulierveld meer zoals woocommerce

1.0.0 – 2019/12/07

  • Eerste uitgave