I've seen your post and I started to looking for this theme so I found this http://webflake.sx/files/file/649-paidchameleon-for-34/ whatahell ---- EDITED ---- This theme is called Chameleon Dark. (www.ipsfocus.com/premade/chameleon2014/index.php) I found the download link at another forum. Well, it's available here but only donators can access and I'm poor, sorry. Special thanks to DevUnit for helping me!
Did you mean this application? http://webflake.sx/files/file/1744-e34-ibeconomy-points-system/ YES!!!!!! THANK YOU SO SO MUCH, I FORGOT TOTALLY THAT APPLICATION NAME THANKSS
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.