Did you do the edit in the readme file? In case you don't have it its: Open /admin/sources/classes/text/parser/bbcode/tbHideContent.php Find: $existing[ $this->topic['tid'] ] = ( intval($hideCheck['pid']) > 0 ) ? true : false;Add Below: // [EN34] Ajax Thanks v1.0.8
if ( $this->settings['en30_ajaxthanks'] && $this->settings['en30_ajaxthankshidehack'] && ! $existing[ $this->topic['tid'] ] && $this->memberData['member_id'] )
{
$this->DB->build( array( 'select' => 'thankers', 'from' => 'posts', 'where' => 'topic_id='.$this->topic['tid'] ) );
$this->DB->execute();
while( $row = $this->DB->fetch() )
{
if ( $row['thankers'] != "" )
{
$thankers = unserialize( stripslashes( $row['thankers'] ) );
foreach ( $thankers as $id => $name )
{
if ( $id == $this->memberData['member_id'] )
{
$existing[ $this->topic['tid'] ] = true;
break;
}
}
}
if ( $existing[ $this->topic['tid'] ] )
{
break;
}
}
}
// [EN34] Ajax Thanks v1.0.8That's the one to stop the content disappearing. The one I quoted in my post above is just to stop the content repeating if you are using a custom skin.