Customizing links in the logo (header) and in the "Course Catalog" (footer)

Jump to solution
EllaEpshteyn1
Community Explorer

Hi all,

We have a main catalog landing page at the U of British Columbia (https://courses.cpe.ubc.ca/). It is currently empty - no sub-catalogs are displayed on this page. I am admin on my group’s sub-catalog (BRIMM (ubc.ca)).  There are two links on our sub-catalog page that point to the main landing page - the logo in the header and the “Course Catalog” link in the footer. Since the main landing page is empty, we don't want any references from our sub-catalog page to the main page. Our IT is not able to customize these links for us. But, they told me I can customize them with JavaScripts. Has anyone done it in a similar situation - with JS or using a different solution? Thanks!!

0 Likes
1 Solution
ElinAppelqvist
Community Member
Hi Ella!

For the logo:

$('.header-branding .logo-customized a').attr("href", "put link to page here");


For the "course catalog" text in the footer:

$('.col-md-12 .piped-list li:first-child a').attr("href", "put link to page here");

The link to put is to the subcatalog or wherever they want the students to go 😄

View solution in original post