urogallo
Karma: 0
|
Re:Possible to turn off Glossary Link? - 2011/02/23 15:57
I disabled the glossary link:
Change the same php file: /components/com_glossary/plugin-classes/glossary_plugin_content.php
Change the following line:
| Code: | if ($this->pluginParams->get('show_image', 1)) {
|
to:
| Code: | if ($this->pluginParams->get('show_image', 0)) {
|
and:
| Code: | <a class="glossarylink" href="$ref" title="$desc">$termasfound</a>
|
to:
This is not a "clean" solution, php parses the whole article text searching for glossary terms, but links are not published in html page.
|