我安装了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;
}
我在这里做错了什么?
答案 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)
}
}
}