تابع ووکامرسی wc_update_230_options بروزرسانی تنظیمات ووکامرس به نسخه 2.3.0

تابع ووکامرسی wc_update_230_options بروزرسانی تنظیمات ووکامرس به نسخه 2.3.0

تابع ووکامرسی wc_update_230_options – بروزرسانی تنظیمات ووکامرس به نسخه 2.3.0

Syntax – سینتکس

wc_update_230_options(); 

Usage – نحوه استفاده

if ( !function_exists( 'wc_update_230_options' ) ) { 
    require_once ABSPATH . PLUGINDIR . 'woocommerce/includes/wc-update-functions.php'; 
} 
 
  
// NOTICE! Understand what this does before running. 
$result = wc_update_230_options(); 
    

Defined – محل تعریف

/includes/wc-update-functions.php

function wc_update_230_options() { 
    // _money_spent and _order_count may be out of sync - clear them 
    delete_metadata( 'user', 0, '_money_spent', '', true ); 
    delete_metadata( 'user', 0, '_order_count', '', true ); 
 
    // To prevent taxes being hidden when using a default 'no address' in a store with tax inc prices, set the woocommerce_default_customer_address to use the store base address by default 
    if ( '' === get_option( 'woocommerce_default_customer_address', false ) && wc_prices_include_tax() ) { 
        update_option( 'woocommerce_default_customer_address', 'base' ); 
    } 
} 

versions – نسخه ها

از نسخه : 3.0.2

نسخه فعلی : 3.0.6

دیگر نسخه ها : 3.0.6 , 3.0.5 , 3.0.4 , 3.0.3 , 3.0.2

ارسال نظر

جهت استفاده از کد حتما از تگ pre استفاده نمایید .

contact us