Search Help
Moderator: mkoch227
Search Help
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
Okay, I figured it out! In suggest_articles.php, i changed
to
Code: Select all
<a href="knowledgebase.php?article='.$article['id'].'&suggest=1" target="_top">'.$article['subject'].'</a>
Code: Select all
<a href="knowledgebase.php?article='.$article['id'].'&suggest=1" target="_self">'.$article['subject'].'</a>