Home › Forums › Core › Function to disable Cashback feature when open manually order (Backend) › Reply To: Function to disable Cashback feature when open manually order (Backend)
Hi,
Please use the attached code.
add_filter('process_woo_wallet_general_cashback', 'process_woo_wallet_general_cashback_callback', 10, 2);
if(!function_exists('process_woo_wallet_general_cashback_callback')){
function process_woo_wallet_general_cashback_callback($is_process, $order){
if(!$order->is_created_via('checkout')){
$is_process = false;
}
return $is_process;
}
}