Select Page

Displays price notice on page or not.

Parameters

  1. is_show – show current notice, can be true or false
  2. cart_total – total price in cart
  3. max_price – maximum price value
  4. 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 );
?>