Changeset 3048593
- Timestamp:
- 03/10/2024 01:16:36 PM (2 years ago)
- Location:
- autocomplete-address-for-woocommerce
- Files:
-
- 9 added
- 1 deleted
- 3 edited
-
tags/1.3.0 (added)
-
tags/1.3.0/assets (added)
-
tags/1.3.0/assets/js (added)
-
tags/1.3.0/assets/js/autocomplete-address.13ea6708a9ad0da13098.js (added)
-
tags/1.3.0/autocomplete-address-for-woocommerce.php (added)
-
tags/1.3.0/includes (added)
-
tags/1.3.0/includes/class-wc-checkout-scripts.php (added)
-
tags/1.3.0/readme.txt (added)
-
trunk/assets/js/autocomplete-address.13ea6708a9ad0da13098.js (added)
-
trunk/assets/js/autocomplete-address.4dd81181ce7c15cd78b1.js (deleted)
-
trunk/autocomplete-address-for-woocommerce.php (modified) (5 diffs)
-
trunk/includes/class-wc-checkout-scripts.php (modified) (1 diff)
-
trunk/readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
autocomplete-address-for-woocommerce/trunk/autocomplete-address-for-woocommerce.php
r2967862 r3048593 6 6 * Author: Fernando Acosta 7 7 * Author URI: https://fernandoacosta.net 8 * Version: 1. 2.08 * Version: 1.3.0 9 9 * License: GPLv2 or later 10 * WC requires at least: 3.3.011 * WC tested up to: 8. 8.110 * WC requires at least: 4.0.0 11 * WC tested up to: 8.6.1 12 12 * 13 13 * This plugin is free software: you can redistribute it and/or modify … … 38 38 * @var float 39 39 */ 40 const VERSION = '1. 2.0';40 const VERSION = '1.3.0'; 41 41 42 42 /** … … 46 46 */ 47 47 protected static $instance = null; 48 48 49 /** 49 50 * Initialize the plugin public actions. … … 63 64 self::$instance = new self; 64 65 } 66 65 67 return self::$instance; 66 68 } … … 103 105 104 106 add_action( 'plugins_loaded', array( 'WC_Autocomplete_Address', 'get_instance' ) ); 105 106 // Declare compatibility with custom order tables for WooCommerce.107 add_action(108 'before_woocommerce_init',109 function () {110 if ( class_exists( '\Automattic\WooCommerce\Utilities\FeaturesUtil' ) ) {111 \Automattic\WooCommerce\Utilities\FeaturesUtil::declare_compatibility( 'custom_order_tables', __FILE__, true );112 }113 }114 ); -
autocomplete-address-for-woocommerce/trunk/includes/class-wc-checkout-scripts.php
r2553002 r3048593 15 15 16 16 public function load_scripts() { 17 if ( is_checkout() ) {17 if ( apply_filters( 'autocomplete_address_for_woocommerce_should_load', is_checkout() ) ) { 18 18 wp_enqueue_script( 19 19 'wc-autocomplete-address', 20 WC_Autocomplete_Address::plugin_url() . '/assets/js/autocomplete-address. 4dd81181ce7c15cd78b1.js',20 WC_Autocomplete_Address::plugin_url() . '/assets/js/autocomplete-address.13ea6708a9ad0da13098.js', 21 21 array( 'jquery' ), 22 22 WC_Autocomplete_Address::VERSION, -
autocomplete-address-for-woocommerce/trunk/readme.txt
r2967862 r3048593 4 4 Tags: endereço, woocommerce, cep, correios, autocomplete, address 5 5 Requires at least: 5.0.0 6 Tested up to: 6. 36 Tested up to: 6.4.3 7 7 Stable tag: trunk 8 8 Requires PHP: 7.0.0 … … 18 18 Nenhuma configuração é necessária. Basta ativar e pronto! 19 19 20 ## Quer melhor ainda mais o checkout? 21 22 Conheça o [Checkout Rishi](https://rishi.com.br/?utm_source=wp_org&utm_medium=social&utm_campaign=free-plugins). Um checkout de alta conversão para WooCommerce. 23 24 Ou conheça dezenas de outros [plugins para WooCommerce](https://fernandoacosta.net/plugins/assinatura/?utm_source=wp_org&utm_medium=social&utm_campaign=free-plugins). 25 20 26 = Por que usar esse plugin? = 21 27 … … 27 33 28 34 Além disso, esse plugin é útil caso você não utilize os Correios, por exemplo. 29 30 31 = Outros plugins =32 33 Além desse plugin, possuo muitos outros que podem ser encontrados no meu site. [Clique aqui](https://fernandoacosta.net/meus-plugins/?beamer_token=wporg-autocomplete).34 35 35 36 == Frequently Asked Questions == … … 45 46 == Changelog == 46 47 47 = 1. 2.0 - 2023/09/16=48 = 1.3.0 - 2024/03/10 = 48 49 49 - WooCommerce HPOS50 - Novo provedor de endereços 50 51 51 52 = 1.0.1 - 2021/03/23 =
Note: See TracChangeset
for help on using the changeset viewer.