I found a couple of topics where you explain how to make secondary nav visible only on certain pages, with this CSS:
.secondary-navigation {
display: none;
}
.page-id-93 .secondary-navigation {
display: block;
}
But I’d like it to be visible in like 30 pages (that belong to a single service)
So call me lazy but don’t see the point of getting the page id of each one and then add it to the code…
I know the Display Widgets plugin could do that easyly for me but would prefer to put the secondary nav below the main menu instead in the sidebar.
Maybe playing with the Disable Elements add-on? Any ideas?