Jump to content

Featured Replies

Posted

What the count posts need it to be removed?

Could contain: Logo

Thanks.

Solved by teraßyte

Go to solution
  • 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.

  • Author

Thanks @teraßyte 

I guess better I look for join date modification, since it was need it for one user.

Recently Browsing 0

  • No registered users viewing this page.