Forums

Join
bbPress Support ForumsTroubleshootingUnable to turn off Gravatar?

Info

Unable to turn off Gravatar?

  1. Hi,

    I just set up a vanilla bbPress installation (0.9.0.2), as I am curious as to how it looks, feels and works. The first thing I did was to turn on Gravatar support, because Gravatar is awesome. However, it seems like I can't turn it off again! When I uncheck the box and press "Update Settings", I return to the same page but now with a green box saying "Settings saved.", suggesting everything went smoothly. However, when I scroll down, I find that the damned box is checked again. What do I do? (And where do I file a bug report if this is not just me?)

    // Job

  2. It was also reported here:
    http://bbpress.org/forums/topic/gravatar-disable-issue

    There is a bug in bb-admin/options-general.php
    http://trac.bbpress.org/changeset/1499

    Edit bb-admin/options-general.php
    and right near the top after
    bb_check_admin_referer( 'options-general-update' );
    add this line:

    if (empty($_POST['avatars_show'])) {$_POST['avatars_show'] = false;}
  3. You must log in to post.