(Wordpress)自定义送货方式数学导致购物车移动切换视图出现问题

问题描述 投票:0回答:0

结账时在桌面版中一切正常,但在移动版中,可切换订单摘要视图出现问题。它有点乱,只是在那个可切换的菜单容器 wcf-collapsed-order-review-section wcf-show 中,试图禁用所有不起作用的 CSS。

尝试禁用一些插件但仍然无法正常工作,当没有价格时它正常显示,但是当有数字时它会变成这样:

运费:送货 10 美元(这是应该显示的方式)而不是这样显示------------

Shipping: Delivery <span class="woocommerce-Price-amount amount"><bdi>460,00<span class="woocommerce-Price-currencySymbol">usd</span></bdi></span>
这是编辑过的代码>

function modify_flat_rate_cost( $rates, $package ) {
    $total_weight = WC()->cart->get_cart_contents_weight();

    // Check if the total weight is less than or equal to 0.5
    if ( $total_weight <= 0.5 ) {
        foreach ( $rates as $rate_id => $rate ) {
            // Check if the rate is for the flat rate shipping method with ID 1
            if ( 'flat_rate' === $rate->method_id && 1 === $rate->instance_id ) {
                // Calculate the new cost
                $new_cost = $rate->cost + 10;
                // Set the new cost
                $rates[$rate_id]->cost = $new_cost;
                break;
            }
        }
    } 

    return $rates;
}
add_filter( 'woocommerce_package_rates', 'modify_flat_rate_cost', 10, 2 );

是否有编辑它或向其中添加内容的选项,以便我在 functions.php 中正常工作?

提前感谢您花时间阅读本文! 嘎琪

尝试禁用 CSS,尝试禁用一些插件,到目前为止没有任何效果,它是代码或 wordpress 中的 CartFlow 插件。但是当我删除这段代码时一切正常。

wordpress woocommerce checkout shipping-method cartflows
© www.soinside.com 2019 - 2024. All rights reserved.