首页 > 解决方案 > 如何设置仅以用户正在使用的当前语言为国家/地区显示的产品费用

问题描述

我正在使用插件“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;
    }

我真的很感激任何帮助!

标签: phpwordpresswoocommercecartcountry

解决方案


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

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;
}

它应该工作。


推荐阅读