Plugin Directory

Changeset 3002302


Ignore:
Timestamp:
11/27/2023 05:38:28 PM (2 years ago)
Author:
casepress
Message:

Update to version 9.8 from GitHub

Location:
wooms
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • wooms/tags/9.8/includes/Orders.php

    r2984550 r3002302  
    10721072    public static function add_settings()
    10731073    {
    1074         add_settings_section('wooms_section_orders', 'Заказы - передача в МойСклад', '', 'mss-settings');
     1074        add_settings_section('wooms_section_orders', 'Заказы', '', 'mss-settings');
    10751075
    10761076        $orders_sender_enable_key = 'wooms_orders_sender_enable';
  • wooms/tags/9.8/includes/ProductStocks.php

    r2985601 r3002302  
    197197
    198198        if ( empty( get_option( 'wooms_warehouse_count' ) ) ) {
    199             $product->set_manage_stock( 'no' );
     199            $product->set_manage_stock( true );
    200200        } else {
    201201            if ( $product->is_type( 'variable' ) ) {
    202202
    203203                //для вариативных товаров доступность определяется наличием вариаций
    204                 $product->set_manage_stock( 'no' );
     204                $product->set_manage_stock( false );
    205205            } else {
    206                 $product->set_manage_stock( 'yes' );
     206                $product->set_manage_stock( true );
    207207            }
    208208        }
     
    227227        return $product;
    228228    }
    229 
    230 
    231229
    232230    /**
  • wooms/tags/9.8/readme.txt

    r2989239 r3002302  
    7676
    7777== Changelog ==
     78
     79= 9.8 =
     80- Тест совместимости WooCommerce 8.3.1
     81- fix: Перестала работать синхронизация на версии 9.6 https://github.com/wpcraft-ru/wooms/issues/522
     82
    7883
    7984= 9.7 =
  • wooms/tags/9.8/wooms.php

    r2989239 r3002302  
    2020 * WC tested up to: 7.2.2
    2121 *
    22  * Version: 9.7
     22 * Version: 9.8
    2323 */
    2424
  • wooms/trunk/includes/Orders.php

    r2984550 r3002302  
    10721072    public static function add_settings()
    10731073    {
    1074         add_settings_section('wooms_section_orders', 'Заказы - передача в МойСклад', '', 'mss-settings');
     1074        add_settings_section('wooms_section_orders', 'Заказы', '', 'mss-settings');
    10751075
    10761076        $orders_sender_enable_key = 'wooms_orders_sender_enable';
  • wooms/trunk/includes/ProductStocks.php

    r2985601 r3002302  
    197197
    198198        if ( empty( get_option( 'wooms_warehouse_count' ) ) ) {
    199             $product->set_manage_stock( 'no' );
     199            $product->set_manage_stock( true );
    200200        } else {
    201201            if ( $product->is_type( 'variable' ) ) {
    202202
    203203                //для вариативных товаров доступность определяется наличием вариаций
    204                 $product->set_manage_stock( 'no' );
     204                $product->set_manage_stock( false );
    205205            } else {
    206                 $product->set_manage_stock( 'yes' );
     206                $product->set_manage_stock( true );
    207207            }
    208208        }
     
    227227        return $product;
    228228    }
    229 
    230 
    231229
    232230    /**
  • wooms/trunk/readme.txt

    r2989239 r3002302  
    7676
    7777== Changelog ==
     78
     79= 9.8 =
     80- Тест совместимости WooCommerce 8.3.1
     81- fix: Перестала работать синхронизация на версии 9.6 https://github.com/wpcraft-ru/wooms/issues/522
     82
    7883
    7984= 9.7 =
  • wooms/trunk/wooms.php

    r2989239 r3002302  
    2020 * WC tested up to: 7.2.2
    2121 *
    22  * Version: 9.7
     22 * Version: 9.8
    2323 */
    2424
Note: See TracChangeset for help on using the changeset viewer.