Quote from
Asgaros on June 23, 2019, 12:20 pm
Hello @metuza
If you want to change the description for the overview manually, you can try to add the following code to the end of your themesĀ functions.php file and adjust the description inside of it:
function change_overview_description() {
global $asgarosforum;
if ($asgarosforum->current_view === 'overview') {
$asgarosforum->current_description = 'My description ...';
}
}
add_action('template_redirect', 'change_overview_description');
Hello @metuza
If you want to change the description for the overview manually, you can try to add the following code to the end of your themesĀ functions.php file and adjust the description inside of it:
function change_overview_description() {
global $asgarosforum;
if ($asgarosforum->current_view === 'overview') {
$asgarosforum->current_description = 'My description ...';
}
}
add_action('template_redirect', 'change_overview_description');
metuza has reacted to this post.