如何设置仅针对用户正在使用的当前语言的国家/地区显示的产品费用

问题描述 投票:2回答:1

我正在使用插件“WooCommerce产品费用”为产品添加定制费用。我想将这些自定义字段设置为仅针对一个国家/地区显示。

     * Check if a product contains fee data.
     *
     * @param int $id Product ID.
     * @return bool True or false based on existance of custom meta.
     */
    public function product_contains_fee_data( $id ) {
        $fee_name   = get_post_meta( $id, 'product-fee-name', true );
        $fee_amount = get_post_meta( $id, 'product-fee-amount', true );

        if ( '' !== $fee_name && '' !== $fee_amount && $fee_amount > 0 ) {
            return true;
        }

        return false;
    }

/////////////////**
     * Get all the fees.
     *
     * @param object $cart WC Cart object.
     * @return array $fees An array of fees to be added.
     */
    public function get_fees( $cart ) {
        $fees = array();

        if ( $this->maybe_remove_fees_for_coupon( $cart ) ) {
            return $fees;
        }

        foreach( $cart->get_cart() as $cart_item => $item ) {

            // Get the data we need from each product in the cart.
            $item_data = array(
                'id'           => $item['data']->get_id(),
                'variation_id' => $item['variation_id'],
                'parent_id'    => $item['data']->get_parent_id(),
                'qty'          => $item['quantity'],
                'price'        => $item['data']->get_price()
            );

            $fee = $this->get_fee_data( $item_data );

            if ( $fee ) {
                $fee_id        = strtolower( $fee['name'] );
                $fee_tax_class = $this->get_fee_tax_class( $item['data'] );

                if ( array_key_exists( $fee_id, $fees ) && 'combine' === get_option( 'wcpf_name_conflicts', 'combine' ) ) {
                    $fees[$fee_id]['amount'] += $fee['amount'];
                } else {
                    $fees[$fee_id] = apply_filters( 'wcpf_filter_fee_data', array(
                        'name' => $fee['name'],
                        'amount' => $fee['amount'],
                        'taxable' => ( '_no_tax' === $fee_tax_class ) ? false : true,
                        'tax_class' => $fee_tax_class
                    ), $item_data );
                }
            }
        }

        return $fees;
    }

我想要完成的是,该字段必须仅在用户来自一个国家/地区时显示,因此产品页面不得在购物车和结帐时显示国家/地区。我是否可以添加一个过滤器以从一个国家/地区排除此字段?先感谢您!!!

**更新**

我试图在用户正在使用的语言中显示“$ fee_name”的翻译。现在我的网站是希腊语和英语,我正在使用wpml,但这个字段没有翻译。我想是否是一种以某种方式添加ICL_LANGUAGE_CODE和str_replace的方法,如果用户使用英文网站查看翻译的“$ fee_name”(但它会破坏网站)。这是我的代码:

        $fee_name   = get_post_meta( $id, 'product-fee-name', true );
        $fee_amount = get_post_meta( $id, 'product-fee-amount', true );
        $fee_name_en = str_replace('product-fee-name', 'Recycling   Tax', $fee_name); 
        $country_code = 'GR'; // <=== Set the country code
        $user_country = WC()->customer->get_shipping_country(); // or with get_billing_country(); method too.

        if( '' !== $fee_name_en && '' !== $fee_amount && $fee_amount > 0  && $user_country === $country_code && ICL_LANGUAGE_CODE=='en') {

            return true;}


        else ( '' !== $fee_name && '' !== $fee_amount && $fee_amount > 0  && $user_country === $country_code && ICL_LANGUAGE_CODE=='el') {

            return true;

            }



        return false;
    }

我非常感谢任何帮助!!

php wordpress woocommerce cart country
1个回答
2
投票

在第一个函数中使用以下内容:

public function product_contains_fee_data( $id ) {
    $fee_name   = get_post_meta( $id, 'product-fee-name', true );
    $fee_amount = get_post_meta( $id, 'product-fee-amount', true );

    $country_code = 'FR'; // <=== Set the country code
    $user_country = WC()->customer->get_shipping_country(); // or with get_billing_country(); method too.

    if ( '' !== $fee_name && '' !== $fee_amount && $fee_amount > 0  && $user_country === $country_code ) {
        return true;
    }

    return false;
}

它应该工作。

© www.soinside.com 2019 - 2024. All rights reserved.