7
Hello again canuck, I think I know what you need. You want a link that when clicked opens up an external website that is wrapped within your websites header and footer and that opens in the same window yeh??
Well, if this is the case you would simply create a one page module and you can find instructions on how to do it here:
https://xoops.org/modules/smartfaq/faq.php?faqid=280Then once you have this new one page module you would add the IFrame code to the index.php of your new one page module with the external site as the Iframe target.
This means you will be able to link to your new one page module which will open in the same window and be wrapped within the header and footer of your site. The link will show in your main menu as it is linking to a site module. If you choose not to have the link in your main menu and have it in a block or elsewhere on your site you will need to use the below code so it opens in the same window:
<a href="http://www.mydomain.com/modules/my_new_one_page_module/index.php" target="_self">YahooA>
Notice that
target="_self"I think this is what you want and I have done this myself on an old site and worked quite well.
Good luck man