Page 1 of 1

Exclude a glossary term in a topic

Posted: Thu Oct 17, 2019 2:50 pm
by kelly2835
Hi there,

How do I exclude a term in the glossary within a single topic. I just don't want it showing up there, but everywhere else.

Thanks in advance!

Re: Exclude a glossary term in a topic

Posted: Mon Oct 21, 2019 3:42 am
by Folkie
One way to do this is to create a new generic class in your CSS that uses the mc-disable-glossary-terms property as described in Ignoring Glossary Terms in Styles, then apply that to the term wherever it appears in the topic.

This is what I use, you can just add it through the text editor if you're happy to do that:

Code: Select all

.NoGloss
{
	mc-disable-glossary-terms: true;
}
To exclude it from a whole target you can apply a condition to that term in the glossary then exclude that condition from the target. Shame you can't do that for a single topic.

Re: Exclude a glossary term in a topic

Posted: Wed Sep 15, 2021 1:54 am
by jbkalla
Folkie wrote:One way to do this is to create a new generic class in your CSS that uses the mc-disable-glossary-terms property as described in Ignoring Glossary Terms in Styles, then apply that to the term wherever it appears in the topic...
Thank you!! That worked!