Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
August 26, 20231 yr Community Expert Solution That icon is not based on post count. It remains visible for the first 30 days after the member has registered the account: /** * Has this member joined recently? * * @return boolean */ public function joinedRecently() : bool { if ( $this->member_id AND $this->joined->diff( \IPS\DateTime::ts( time() ) )->days < 30 ) { return TRUE; } return FALSE; } There is no setting to change the value, either. If you want to change it, you'll need a custom modification.
August 26, 20231 yr Author Thanks @teraßyte I guess better I look for join date modification, since it was need it for one user.