使过滤器产品特定

时间:2020-01-27 21:33:10

标签: wordpress woocommerce

我安装了woocommerce,并且试图迫使购物车返回固定值,而与数量无关。我终于找到了执行此操作的正确过滤器。

public Validate ()
        {
            InitializeComponent ();

            Device.StartTimer(TimeSpan.FromSeconds(1), () =>
            {
                if (picker.ItemsSource != null)
                {
                    picker.Focus();

                    return false;
                }
                else
                {
                    return true;
                }
            });
        }

但是在尝试定位相关产品时,过滤器将无法工作。

add_filter('woocommerce_cart_subtotal','subtotalchanger',0);
    function subtotalchanger($subtotal){
        $my_fixed_subtotal = 1.65;
        return $my_fixed_subtotal;
    }

我在这里做错了什么?

1 个答案:

答案 0 :(得分:2)

你是这个意思吗?

public class Example {
    //do stuffs
    myFunction(null);
}

public class Manager {
    public void myFunction(Function<int[], void> funcToPass) { // Can't specify void as return value!
        //do stuff
        if(funcToPass != null) { // can't replicate such behaviour
            funcToPass(someParams)
        }
    }
}