Skip to:
Content
Pages
Categories
Search
Top
Bottom

How can I not to record IP adress

  • @gasjp9ugawesg8awe

    Participant

    I am managing the BBPress website.

    I do not want to record the Posters IP address.

    But,for now,it record the Posters IP address like this.

    https://snipboard.io/KiHAGt.jpg

    Is it possible to not to record IP address on WordPress?

Viewing 3 replies - 1 through 3 (of 3 total)
  • @robin-w

    Moderator

    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

    @gasjp9ugawesg8awe

    Participant

    Thanks.It resolved.

    I want to delete this topid.

    How can I delete it?

    @robin-w

    Moderator

    if you mean this thread, it stays to help others.

Viewing 3 replies - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.
Skip to toolbar