Quote from: Senkusha on March 24, 2025, 11:59:40 AMYes. I think there may be something else going on here because, after reviewing my settings, the topics aren't displaying either:
You cannot view this attachment.
// Add the forum button
$buttons = array_merge(
array_slice($buttons, 0, array_search('home', array_keys($buttons), true) + 1),
[
'forum' => [
'title' => isset($txt['tp-forum']) ? $txt['tp-forum'] : 'Forum',
'href' => ($context['TPortal']['front_placement'] == 'boardindex') ? $scripturl . '?action=forum' : $scripturl,
'show' => true,
'icon' => 'menu_tpforum',
],
],
$buttons
// Add the forum button
$buttons = array_merge(
array_slice($buttons, 0, array_search('home', array_keys($buttons), true) + 1),
[
'forum' => [
'title' => isset($txt['tp-forum']) ? $txt['tp-forum'] : 'Forum',
'href' => ($context['TPortal']['front_placement'] == 'boardindex' || 'standalone') ? $scripturl . '?action=forum' : $scripturl,
'show' => true,
'icon' => 'menu_tpforum',
],
],
$buttons
Quote from: @rjen on March 24, 2025, 04:44:23 PMI already said it...
look in TPortal.php, look for $context['page_title'].
I am guessing you want line 740
$context['page_title'] = $context['TPortal']['article']['subject'];
Page created in 0.043 seconds with 21 queries.