Skip to:
Content
Pages
Categories
Search
Top
Bottom

What is up with my IP Address in bbPress Forums?

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

  • Robin W
    Moderator

    @robin-w

    that is entirely intentional – it lets keymasters see IP addresses to spot people who might post under several names.

    you could hide it with css

    .bbp-reply-ip {
    display : none !important ;
    }

    or amend line 512 of loop-single-reply

    create a directory on your theme called ‘bbpress’
    ie wp-content/themes/%your-theme-name%/bbpress

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

    find
    wp-content/plugins/bbpress/templates/default/bbpress/loop-single-reply.php
    Make a copy of this file, and put in in the directory called bbpress that you created above, so you end up with
    wp-content/themes/%your-theme-name%/bbpress/loop-single-reply.php
    bbPress will now use this template instead of the original

    then take out line 51 – you may also need to do this to loop-single-topic

    or use a filter to get rid of it

    function remove_ip () {
    $author_ip = '' ;
    return $author_ip ;
    }
    
    add_filter( 'bbp_get_author_ip', 'remove_ip');
    

    Robin W
    Moderator

    @robin-w

    edited filter above


    jdw21
    Participant

    @jdw21

    Thanks for your help. But I’m not wanting to remove the IP addresses. I’m just wondering why my IP address is so jacked up? It’s not even a valid IP address.


    jdw21
    Participant

    @jdw21

    It only does the weird IP address when posting as KEYMASTER. Other users don’t look weird. It’s only the KEYMASTER.


    Robin W
    Moderator

    @robin-w

    This is a valid IP address – it’s just a IPv6 address – the new bigger ones as the world is running out of the old IPv4 addresses


    jdw21
    Participant

    @jdw21

    Oh really? That’s interesting. Thank you for clarifying. As long as I’m only one who sees it I don’t really mind. Thank you for your help!


    Robin W
    Moderator

    @robin-w

    No problem !

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