Skip to:
Content
Pages
Categories
Search
Top
Bottom

How can I not to record IP adress

Viewing 3 replies - 1 through 3 (of 3 total)

  • Robin W
    Moderator

    @robin-w

    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

    @gasjp9ugawesg8awe

    Thanks.It resolved.

    I want to delete this topid.

    How can I delete it?


    Robin W
    Moderator

    @robin-w

    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