2

プログラムで配送料を変更する必要があります。

<?php
   $percentage = 50;
   $current_shipping_cost = WC()->cart->get_cart_shipping_total();
   echo $current_shipping_cost * $percentage / 100;
?>

残念ながら機能しておらず、常に 0 (ゼロ)が返されます。

計算された割引率に基づいた合計で、表示されている配送合計を変更する方法は?

4

1 に答える 1

0

以下は、パーセンテージに基づいて送料合計を表示します。2 つの方法があります。

1)カスタム関数を使用した最初の方法。

アクティブな子テーマ (またはアクティブなテーマ) の function.php ファイルで:

function wc_display_cart_shipping_total( $percentage = 100 )
{
    $cart  = WC()->cart;
    $total = __( 'Free!', 'woocommerce' );

    if ( 0 < $cart->get_shipping_total() ) {
        if ( $cart->display_prices_including_tax() ) {
            $total = wc_price( ( $cart->shipping_total + $cart->shipping_tax_total ) * $percentage / 100 );
            if ( $cart->shipping_tax_total > 0 && ! wc_prices_include_tax() ) {
                $total .= ' <small class="tax_label">' . WC()->countries->inc_tax_or_vat() . '</small>';
            }
        } else {
            $total = wc_price( $cart->shipping_total * $percentage / 100  );
            if ( $cart->shipping_tax_total > 0 && wc_prices_include_tax() ) {
                $total .= ' <small class="tax_label">' . WC()->countries->ex_tax_or_vat()  . '</small>';
            }
        }
    }
    return  $totals;
}

使用法:

<?php echo wc_display_cart_shipping_total(50); ?>

2)フィルター フックを使用した 2 番目の方法。

アクティブな子テーマ (またはアクティブなテーマ) の function.php ファイルで:

add_filter( 'woocommerce_cart_shipping_total', 'woocommerce_cart_shipping_total_filter_callback', 11, 2 );
function woocommerce_cart_shipping_total_filter_callback( $total, $cart )
{
    // HERE set the percentage
    $percentage = 50;

    if ( 0 < $cart->get_shipping_total() ) {
        if ( $cart->display_prices_including_tax() ) {
            $total = wc_price( ( $cart->shipping_total + $cart->shipping_tax_total ) * $percentage / 100 );
            if ( $cart->shipping_tax_total > 0 && ! wc_prices_include_tax() ) {
                $total .= ' <small class="tax_label">' . WC()->countries->inc_tax_or_vat() . '</small>';
            }
        } else {
            $total = wc_price( $cart->shipping_total * $percentage / 100  );
            if ( $cart->shipping_tax_total > 0 && wc_prices_include_tax() ) {
                $total .= ' <small class="tax_label">' . WC()->countries->ex_tax_or_vat()  . '</small>';
            }
        }
    }
    return  $totals;
}

使用法:

<?php echo WC()->cart->get_cart_shipping_total(); ?>
于 2019-04-19T14:01:59.303 に答える