By jleflar23 on
I am using Drupal to replace an existing website, and am running the two in parallel while I copy content over from the old website to the Drupal version. I would like to add some text to the Search Results page to refer people to the old website if they can't find what they're looking for. Any ideas where or how to edit this content?
Comments
Create Custom Block
Hi, You could create a custom block and have it appear on the search page. Then within the block you can include a reference that links back to the old website. You may also want to add additional regions in your template file so that you could include the custom block above the main content region. Here is a link to an article describing how to add custom regions to your template: http://mydrupalblog.lhmdesign.com/creating-custom-regions
If I were you, I would
If I were you, I would override the theme_search_page function. I would copy and paste the original code into the override, then add my own at the end. If you are not comfortable with doing that, I think the Views module can also do what you want.