So read up on the previous postings about adding new nav links. Tried doing it after logout and that failed miserably. Now I'm trying to add it between home and help with code below. Cleared my cache and nothing. I'm sure it's something simple I'm missing.
{
$buttons = array(
'home' => array(
'title' => $txt['home'],
'href' => $scripturl,
'show' => true,
'sub_buttons' => array(
),
'is_last' => $context['right_to_left'],
),
'amazon' => array(
'title' => $txt['amazon'],
'href' => 'http://www.amazon.com/?tag=test-20,
'show' => true,
'sub_buttons' => array(
),
),
'help' => array(
'title' => $txt['help'],
'href' => $scripturl . '?action=help',
'show' => true,
'sub_buttons' => array(
),
),