Select Page

Display referrer notice on page or not.

Parameters

  1. is_show – show current notice, can be true or false
  2. referrer – string from $_SERVER[‘HTTP_REFERER’] , when customer opens the site
  3. 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 );
?>