Quantcast
Channel: bbPress.org » All Posts
Viewing all articles
Browse latest Browse all 3638

Reply To: How can I not to record IP adress

$
0
0

This should do it

add_filter( 'bbp_current_author_ip', '__return_false' ) ;

if it doesn’t then

add_filter( 'bbp_current_author_ip', 'rew_remove_ip' );

function rew_remove_ip () {
$retval = 0 ;
return $retval ;
}

Put this in your child theme’s function file –

ie wp-content/themes/%your-theme-name%/functions.php

where %your-theme-name% is the name of your theme

or use

Code Snippets


Viewing all articles
Browse latest Browse all 3638

Trending Articles