Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
March 20, 20231 yr Solution This post was recognized by Marc! Adriano Faria was awarded the badge 'Helpful' and 5 points. I believe it shows up only in forums where the solved is enabled.
March 20, 20231 yr Author 5 minutes ago, Adriano Faria said: I believe it shows up only in forums where the solved is enabled. Makes sense.
March 20, 20231 yr This post was recognized by Jim M! Adriano Faria was awarded the badge 'Helpful' and 1 points. "Thorough support. Thanks!" 2 minutes ago, My Sharona said: Makes sense. Yep, just check it out. public function containerAllowsMemberSolvable() { return ( $this->containerAllowsSolvable() AND $this->container()->forums_bitoptions['bw_enable_answers_member'] ); } and if ( method_exists( $this, 'isQuestion' ) and $this->isQuestion() ) { $showSolvedStats = TRUE; } else if ( \IPS\IPS::classUsesTrait( $this, 'IPS\Content\Solvable' ) and ( $this->containerAllowsMemberSolvable() OR $this->containerAllowsSolvable() ) ) { $showSolvedStats = TRUE; } and {{if isset( $comment->author_solved_count )}} Will show only in forums with SOLVED enabled.