[ad_1]
How can I do that? I used this snippet, but it hides the notice everywhere.
//
function display\_store\_notice\_on\_home\_page\_only() { if ( is\_home() ) { add\_action( ‘wp\_footer’, ‘woocommerce\_demo\_store’, 10 ); } else { remove\_action( ‘wp\_footer’, ‘woocommerce\_demo\_store’, 10 ); } } add\_action( ‘wp’, ‘display\_store\_notice\_on\_home\_page\_only’ );
//
​
Any suggestion?
Thanks!
[ad_2]