Page 1 of 1

Search Help

Posted: Tue Feb 11, 2014 7:45 pm
by Triton
I am running HESK on it's own server and use an Iframe to embed it on a site hosted elsewhere. All links work great when clicked except when someone searches help and and clicks the suggested article. It then opens the article in a new tab instead of loading it in the iframe. Is there a way to keep it contained? Thanks for any help!

Re: Search Help

Posted: Wed Feb 12, 2014 2:28 am
by Triton
Okay, I figured it out! In suggest_articles.php, i changed

Code: Select all

<a href="knowledgebase.php?article='.$article['id'].'&suggest=1" target="_top">'.$article['subject'].'</a>
to

Code: Select all

<a href="knowledgebase.php?article='.$article['id'].'&suggest=1" target="_self">'.$article['subject'].'</a>