Hi, is there a way to output a link that links to all the users questions on question view page ??
For example in the question view page i want exactly below the user avatar to add this text
"SEE ALL QUESTIONS BY THIS USER"
In the file qa-app-format there is this code:
'questions' => array(
'label' => qa_lang_html('misc/nav_user_qs'),
'url' => qa_path_html('user/'.$handle.'/questions'),
),
So i tried to use something like this code inside my qa-theme.php file to output the link i want :
$this->output('<div class="more-questions"><a href=" 'user/'.$handle.'/questions' ">SEE ALL QUESTIONS BY THIS USER</a></div>');
But it doesnt work!!!
What is wrong ???
Please Help