Exclude a glossary term in a topic

This forum is for all Flare issues not related to any of the other categories.
Post Reply
kelly2835
Propeller Head
Posts: 32
Joined: Wed Jun 26, 2019 10:38 am

Exclude a glossary term in a topic

Post 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!
Folkie
Propeller Head
Posts: 29
Joined: Sun Oct 27, 2013 8:55 am

Re: Exclude a glossary term in a topic

Post 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.
jbkalla
Propeller Head
Posts: 57
Joined: Tue Nov 06, 2012 11:53 am
Location: Denver, CO, USA
Contact:

Re: Exclude a glossary term in a topic

Post 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!
Post Reply