Select Page

Displays products in cart notice on page or not.

Parameters

  1. is_show – show current notice, can be true or false
  2. products_in_cart – array with product IDs in cart
  3. 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 );
?>