willianmano / moodle-theme_moove

A Moodle Boost child theme
GNU General Public License v3.0
175 stars 157 forks source link

Filter for Frontpage items - FAQs #405

Closed stemiwe closed 1 year ago

stemiwe commented 1 year ago

Issue #390 is not solved yet for FAQ:

    @willianmano please also fix it for FAQ - /classes/util/settings.php starting at line 221, change from
$templatecontext['faq'][] = [
                    'id' => $i,
                    'question' => $this->$faqquestion,
                    'answer' => $this->$faqanswer
                ];

to

$templatecontext['faq'][] = [
                    'id' => $i,
                    'question' => format_text($this->$faqquestion),
                    'answer' => format_text($this->$faqanswer)
                ];

_Originally posted by @stefan-weber-think-modular in https://github.com/willianmano/moodle-theme_moove/issues/390#issuecomment-1303084129_