Invision Community 4: SEO, prepare for v5 and dormant account notifications By Matt Monday at 02:04 PM
abobader Posted August 26, 2023 Posted August 26, 2023 What the count posts need it to be removed? Thanks.
Solution teraßyte Posted August 26, 2023 Solution Posted August 26, 2023 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. abobader 1
abobader Posted August 26, 2023 Author Posted August 26, 2023 Thanks @teraßyte I guess better I look for join date modification, since it was need it for one user.
Recommended Posts