dariacminds
Forum Replies Created
-
Hello,
Please specify which PHP and WordPress versions are used on your site.
Forum: Plugins
In reply to: [CM Tooltip Glossary] The link breaks if it contains a termHi,
To prevent broken links due to term highlighting, you can disable link parsing. To do it, please add the “<a>” tag to the “Exclude HTML tags from parsing” option. This option is located in Settings >> General Settings >> Term highlighting section
It seems that the issue is related to the styles of your theme. To fix it, please try to add the following custom CSS to your site:
@media (max-width: 600px) {
body:has(#tt) {
position: static !important;
}
}Hi Svetlana,
You can achieve this by using the term excerpt for tooltips. To do this, simply duplicate the first paragraph that you’d like to display in the tooltip into the excerpt field of each glossary term, and then enable the “Use term excerpt for hover?” option. This way, the tooltip will show only that short introductory paragraph, while the full content — including additional paragraphs and images — will remain visible on the glossary page.
Alternatively, you can use the “Limit tooltip length?” option and set an approximate length that matches a single paragraph. This will automatically shorten the tooltip content without the need to edit each term individually.
Both these options are located in Settings >> Tooltip tab.
Hi Svetlana,
It is a misprint in the option description; we will fix it in the next version. To exclude glossary items from the search, please enable the “Exclude Glossary Term Pages from search” option and check if it helped.
As for the “Search for glossary items on this post/page” metabox option, the “Don’t search” value prevents parsing this specific glossary item to highlight other terms there, and not to exclude the term from site search. So if you would like to highlight terms on that term page, please change this option back to the default value
Forum: Plugins
In reply to: [CM Tooltip Glossary] CSS selector for term inside tool tipThanks for clarifying
Please use this custom CSS code to make the tooltip title larger:body #tt #ttcont div.glossaryItemTitle{ font-size: 20px !important; }Forum: Plugins
In reply to: [CM Tooltip Glossary] How to change Tooltip title color?Please add the following custom CSS to your site to make the tooltip title white:
body #tt #ttcont div.glossaryItemTitle{ color: #fff !important; }