<td class="cat" colspan="2"><h4>{L_HAVING_A_PROBLEM}</a></h4></td>
Sorry but I do not know that theme.legendrules wrote:i just did it directly with glacier theme...
can u tell me wht all changes do i exactly need to make in this template...?
have your tryed Purge the cache in ACPnonegiven wrote:Just out of interest, how do you have this link appear on every displayed page whether index, forum or topic?
I tried moving it to the overall footer but it only appears when the Index page shows, the rest of the time is blank.
I tried placing it on viewforum.php, viewtopic.php or viewonline.php and it seems to break them badly.
The footer would be a great place to have it. Can anyone give me any pointers on how?
TIA. I will have a try later myself ...
Code: Select all
$template->assign_vars(array(
'DEBUG_OUTPUT' => (defined('DEBUG')) ? $debug_output : '',
'TRANSLATION_INFO' => (!empty($user->lang['TRANSLATION_INFO'])) ? $user->lang['TRANSLATION_INFO'] : '',
Code: Select all
$template->assign_vars(array(
'DEBUG_OUTPUT' => (defined('DEBUG')) ? $debug_output : '',
'TRANSLATION_INFO' => (!empty($user->lang['TRANSLATION_INFO'])) ? $user->lang['TRANSLATION_INFO'] : '',
// Contact Admin mod
'U_ADMIN_CONTACT' => '<a href="mailto:' . $config['board_email'] . '?subject=' . $user->lang['CONTACT_SUBJECT'] . '">' . $user->lang['CONTACT_ADMIN'] . '</a>',
Code: Select all
$template->assign_vars(array(
'DEBUG_OUTPUT' => (defined('DEBUG')) ? $debug_output : '',
'TRANSLATION_INFO' => (!empty($user->lang['TRANSLATION_INFO'])) ? $user->lang['TRANSLATION_INFO'] : '',
// Contact Admin mod
'U_ADMIN_CONTACT' => '<a href="mailto:' . $config['board_email'] . '?subject=' . $user->lang['CONTACT_SUBJECT'] . '">' . $user->lang['CONTACT_ADMIN'] . '</a>',
'U_ACP' => ($auth->acl_get('a_') && $user->data['is_registered']) ? append_sid("{$phpbb_root_path}adm/index.$phpEx", false, true, $user->session_id) : '')
);