Woocommerce 添加到购物车条件
Woocommerce Add to Cart Condition
我最近在 function.php 中实现了当价格为 0 时重定向 url 的代码,但它似乎只是缺少并且价格条件不起作用。查看我的代码。
/**
* Set a custom add to cart URL to redirect to
* @return string
**/
function custom_add_to_cart_redirect() {
$_product = wc_get_product( $product_id );
if( $product->get_price() == 0 || $product->get_price() == '') {
return 'http://www.nichegas.ads-tracker.com/contact/';
}
}
add_filter( 'woocommerce_add_to_cart_redirect', 'custom_add_to_cart_redirect' );
看来我缺少一些代码什么的。
我们的 objective 是:
1. 如果价格为 0,它将重定向到自定义 url
2 同样,当单击添加到卡时,它的零不会将项目添加到购物车。如何禁用添加产品?
非常感谢您的帮助。祝你有美好的一天!
更新
Alternatively you can use also woocommerce_add_to_cart
hook instead, and **here is possible to remove the freshly added item, this way:
add_action( 'woocommerce_add_to_cart', 'custom_add_to_cart', 10, 2 );
function custom_add_to_cart( $cart_item_key, $product_id ) {
$_product = wc_get_product($product_id);
$_product_price = $_product->get_price();
if( $_product_price == 0 || empty($_product_price) ) {
// Removing this freshly added cart item
WC()->cart->remove_cart_item($cart_item_key);
// Redirecting to some url
wp_redirect( 'http://www.nichegas.ads-tracker.com/contact/' );
exit;
}
}
代码进入您的活动子主题(或主题)的 function.php 文件。或者在任何插件 php 文件中。
我最近在 function.php 中实现了当价格为 0 时重定向 url 的代码,但它似乎只是缺少并且价格条件不起作用。查看我的代码。
/**
* Set a custom add to cart URL to redirect to
* @return string
**/
function custom_add_to_cart_redirect() {
$_product = wc_get_product( $product_id );
if( $product->get_price() == 0 || $product->get_price() == '') {
return 'http://www.nichegas.ads-tracker.com/contact/';
}
}
add_filter( 'woocommerce_add_to_cart_redirect', 'custom_add_to_cart_redirect' );
看来我缺少一些代码什么的。 我们的 objective 是: 1. 如果价格为 0,它将重定向到自定义 url 2 同样,当单击添加到卡时,它的零不会将项目添加到购物车。如何禁用添加产品?
非常感谢您的帮助。祝你有美好的一天!
更新
Alternatively you can use also
woocommerce_add_to_cart
hook instead, and **here is possible to remove the freshly added item, this way:
add_action( 'woocommerce_add_to_cart', 'custom_add_to_cart', 10, 2 );
function custom_add_to_cart( $cart_item_key, $product_id ) {
$_product = wc_get_product($product_id);
$_product_price = $_product->get_price();
if( $_product_price == 0 || empty($_product_price) ) {
// Removing this freshly added cart item
WC()->cart->remove_cart_item($cart_item_key);
// Redirecting to some url
wp_redirect( 'http://www.nichegas.ads-tracker.com/contact/' );
exit;
}
}
代码进入您的活动子主题(或主题)的 function.php 文件。或者在任何插件 php 文件中。