Plugin Directory

Changeset 1171907


Ignore:
Timestamp:
06/01/2015 01:48:13 PM (11 years ago)
Author:
hyyan
Message:

Released version 0.23

Location:
woo-poly-integration
Files:
62 added
6 edited

Legend:

Unmodified
Added
Removed
  • woo-poly-integration/trunk/CHANGELOG.md

    r1169139 r1171907  
     1###0.23
     2
     3* Added support for Woocommerce search widget @see [Duplicated search result](https://wordpress.org/support/topic/duplicated-search-result)
     4* Fixed translation downloader tries to download woo translations for en_US locale
     5* Fixed wrong product duplicate behavior
     6
    17###0.22
    28
  • woo-poly-integration/trunk/__init__.php

    r1169139 r1171907  
    1111 * GitHub Plugin URI: hyyan/woo-poly-integration
    1212 * License: MIT License
    13  * Version: 0.22
     13 * Version: 0.23
    1414 */
    1515
  • woo-poly-integration/trunk/readme.txt

    r1169139 r1171907  
    44Requires at least: 3.8
    55Tested up to: 4.2
    6 Stable tag: 0.22
     6Stable tag: 0.23
    77License: MIT
    88License URI: https://github.com/hyyan/woo-poly-integration/blob/master/LICENSE
     
    107107== Changelog ==
    108108
     109= 0.23 =
     110* Added support for Woocommerce search widget @see [Duplicated search result](https://wordpress.org/support/topic/duplicated-search-result)
     111* Fixed translation downloader tries to download woo translations for en_US locale
     112* Fixed wrong product duplicate behavior
     113
    109114= 0.22 =
    110115* Added Translation Downloader to auto download woocommerce translation files when a new polylang language is add
  • woo-poly-integration/trunk/src/Hyyan/WPI/Language.php

    r1169139 r1171907  
    8787        $locale = esc_attr($_REQUEST['locale']);
    8888
     89        if ('en_us' === strtolower($locale)) {
     90            return true;
     91        }
     92
    8993        try {
    9094            return TranslationsDownloader::download($locale, $name);
  • woo-poly-integration/trunk/src/Hyyan/WPI/Plugin.php

    r1169139 r1171907  
    116116        new Coupon();
    117117        new Reports();
     118        new Widgets\SearchWidget();
    118119    }
    119120
  • woo-poly-integration/trunk/src/Hyyan/WPI/Product/Product.php

    r1169139 r1171907  
    4141        new Meta();
    4242        new Variable();
     43        new Duplicator();
    4344
    4445        if ('on' === Settings::getOption('stock', Features::getID(), 'on')) {
Note: See TracChangeset for help on using the changeset viewer.