No worries Jessica
What I did:
On the main catalog (home) page I inherited categories from the sub-catalogs ancestry and created categories for all the sub-catalogs. Doing both those things in Catalog (not sure if the order really matters) made all Catalog course listings display on our Catalog homepage.
As we have our own Catalog tiles on the homepage, we do not want to display any listing there. But we do want the Catalog homepage search engine (form) to be able to search all of our course listings and for the results to be displayed on a separate page that is not the Catalog homepage.
Do do this, I used the jquery hide function to hide course listings.
I then created an additional click event that is triggered at the same time someone submits a new search query that reloads the browser's window. The timing of this click event has a slight delay on it so the search query results are returned first before the page reloads. Doing this allows for the search query results to load onto a new webpage.
$( "#search-submit" ).click(function() {
setTimeout("location.reload();", 1000);
});
Hope this makes sense and I suspect I am not the first to work this out.
Cheers
Greg
This discussion post is outdated and has been archived. Please use the Community question forums and official documentation for the most current and accurate information.