admin管理员组文章数量:1422169
how Disable Order Review Page when the id product is 50710
i use this code
remove_action( 'woocommerce_checkout_order_review', 'woocommerce_order_review', 10 );
but i need disable order review only in id product : 50700
how Disable Order Review Page when the id product is 50710
i use this code
remove_action( 'woocommerce_checkout_order_review', 'woocommerce_order_review', 10 );
but i need disable order review only in id product : 50700
Share Improve this question asked Feb 26, 2020 at 15:40 ELEELE 134 bronze badges1 Answer
Reset to default 1function action_woocommerce_checkout_order_review() {
// Product id
$product_id = 50700;
// Generate cart id
$product_cart_id = WC()->cart->generate_cart_id( $product_id );
// Is product in cart
$in_cart = WC()->cart->find_product_in_cart( $product_cart_id );
// Product found
if ( $in_cart ) {
remove_action( 'woocommerce_checkout_order_review', 'woocommerce_order_review', 10 );
}
}
add_action( 'woocommerce_checkout_order_review', 'action_woocommerce_checkout_order_review', 1, 0 );
本文标签: woocommerce offtopicDisable Order Review Page when the id product
版权声明:本文标题:woocommerce offtopic - Disable Order Review Page when the id product 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744713625a2621273.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论