Select Page

Displays category in cart notice on page or not.

Parameters

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