Ok, now i tryed to do this but failed when i relised that tut was for 1.1 :-X
So i know i need to edit index.english.php and index.template.php
I think i've done it correctly in english by changing
$txt[help] = 'Help';
to
$txt[119] = 'Manual';
but what do i need to do in index.template.php
Theirs no Show help button like in 1.1
buttons are not generated in the theme files in 2.x they are in /Sources/Subs.php
Lainaus käyttäjältä: NEMINI - tammikuu 22, 2009, 12:38:39 AP
buttons are not generated in the theme files in 2.x they are in /Sources/Subs.php
kk, do you know how to do it
Bump :)
It's still stored in cache. Go to /cache and look for lang_index+Modifications_english_default.php. Delete it when found. That should refresh it if you already changed the text to:
$txt[119] = 'Manual';
To change the link, open up /Sources/Subs.php:
'help' => array(
'title' => $txt['help'],
'href' => $scripturl . '?action=help',
'show' => true,
'sub_buttons' => array(
),
),
Change $scripturl . '?action=help' to whatever you want.
Question, does the URL need to be in '' or ""
Single quotes should make it work. Something like:
'help' => array(
'title' => $txt['help'],
'href' => 'http://www.yoursite.com',
'show' => true,
'sub_buttons' => array(
),
),
Does this work for 2.0 RC1. Or has it been changed since 2.0.4
The menu uses the same syntax in 2RC1. SO it should work ;)
It works, thanks