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