Display referrer notice on page or not.
Parameters
- is_show – show current notice, can be true or false
- referrer – string from $_SERVER[‘HTTP_REFERER’] , when customer opens the site
- expect_referrer – string that current notice expects
Usage
<?php
function change_br_is_show_referer_notice ( $is_show, $referrer, $expect_referrer ) {
//your code here
return $is_show;
}
add_filter( 'br_is_show_referer_notice', 'change_br_is_show_referer_notice', 10, 3 );
?>