Displays price notice on page or not.
Parameters
- is_show – show current notice, can be true or false
- cart_total – total price in cart
- max_price – maximum price value
- min_price – minimum price value
Usage
<?php
function change_br_is_show_price_notice ( $is_show, $cart_total, $max_price, $min_price ) {
//your code here
return $is_show;
}
add_filter( 'br_is_show_price_notice', 'change_br_is_show_price_notice', 10, 4 );
?>