bu cevabın kodu: How to get minimum order amount for free shipping in woocommerce
, WooCommerce sürüm 2 ile geçersiz'dur. 6+, ancak bu işlevsel yanıt için yardımcı oldu…
Bazı arama ve bazı denemeler yaptıktan sonra, belirli bir bölge için Ücretsiz Gönderim yönteminde ayarlanan minimum Sipariş miktarını alma yolunu buldum (Bölge):
// Here you get (as you already know) the used shipping method reference
$chosen_methods = WC()->session->get('chosen_shipping_methods');
// Replacing inside the string ':' by '_'
$option_value = str_replace(':', '_', $chosen_methods[0]);
// We concatenate the string with additional sub-strings
$option_value = 'woocommerce_'.$option_value.'_settings';
// Just a test => outputting the string to see what we get
echo $option_value; echo '<br>';
// Now we can get the options values with that formatted string
$free_shipping_settings = get_option($option_value);
// Just for test => we output the (pre-formatted) array of values to check
echo '<pre>'; print_r($free_shipping_settings); echo '</pre><br>';
// Here we get the value of the order min amount (Finally!)
$order_min_amount = $free_shipping_settings['min_amount'];
// We output the value (to check)
echo 'Order min amount: '.$order_min_amount;
Bingo: Burada
çalışma test kodu (açıklamalar içeride yorumlanmıştır) 'dir! anladın.
Olası kopyalar (http://stackoverflow.com/questions/26582039/how-to-get-minimum-order-amount-for-free [WooCommerce serbest nakliye için minimum sipariş miktarı nasıl alınır] -hesaplama-in-woocommerce) –
lütfen tekrar açıklamamı tekrar okuyun. Bunu beğendim (bağlantınız) ama NULL sonucunu döndürür. Ben böyle yapıyorum: $ selected_methods = WC() -> session-> get ('selected_shipping_methods'); \t \t $ selected_shipping = $ selected_methods [0]; ama seçilen yöntem Free Shipping ise min_amount nasıl alabilirim? – huykon225
@LoicTheAztec soruyu veya açıklamayı değiştirmek zorunda olduğum anlamına mı geliyor? İstediğim her şey: Ödeme sayfasına geldiğimde ve bir nakliye yöntemini seçtiğimde Ücretsiz Kargo, ** bu yöntemin ** minimum miktarını almak istiyorum. Bana yardımcı olabilir misiniz ? – huykon225