Displays products in cart notice on page or not.
Parameters
- is_show – show current notice, can be true or false
- products_in_cart – array with product IDs in cart
- products – array with product IDs, that must be in cart to show notice
Usage
<?php
function change_br_is_show_product_notice ( $is_show, $products_in_cart, $products ) {
//your code here
return $is_show;
}
add_filter( 'br_is_show_product_notice', 'change_br_is_show_product_notice', 10, 3 );
?>