Thorsten Hoeppner
Forum Replies Created
-
Super, thanks!
Burst Statistics: 1.7.1
Complianz Privacy Suite (GDPR/CCPA) premium: 7.1.3
I currently use the free version.
Otherwise there are no messages in the debug log.Forum: Plugins
In reply to: [Glossary] bold word = bold tooltip text ?!?.glossary-tooltip-content {
font-weight: normal;
font-style: normal;
position: absolute;
z-index: 9999;
width: 360px;
left: 50%;
margin: 0 0 20px -180px;
bottom: 60%;
text-align: left;
border: solid 2px #ccc;
border-radius: 5px;
background: #f5f5f5;
opacity: 0;
cursor: default;
pointer-events: none;
opacity: 0;
-webkit-transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out,
-webkit-transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out,
transform 0.2s cubic-bezier(0.71, 1.7, 0.77, 1.24);
-webkit-transform: translate3d(0, 0, 0);
transform: translate3d(0, 0, 0);
}Could it be that the topics in the class are simply missing two entries?
Forum: Plugins
In reply to: [Glossary] bold word = bold tooltip text ?!?It is a WordPress plugin.
Shouldn’t it also work with WordPress?So I paid $99.00 so I now have to remove all the bold words on 760 pages that contain a tooltip????
Forum: Plugins
In reply to: [Glossary] Tooltip HTML ContentSince it doesn’t seem to work with original HTML, I’m now using a different approach:
[Test]:|This is a tooltip as a test.
add_filter( 'glossary_tooltip_html', function( $tooltip, $excerpt, $photo, $post_id, $noreadmore ) {
$HTML = str_replace("|","<br>",$tooltip);
$HTML = str_replace("[","<b>",$HTML);
$HTML = str_replace("]","</b>",$HTML);
return $HTML;
}, 10, 5 );Forum: Plugins
In reply to: [Glossary] Tooltip HTML ContentThis is a [Test]
This is a test for the tooltips.
for the tooltips.[Test] is the word with the Tooltip.
- This reply was modified 3 months ago by Thorsten Hoeppner.
Forum: Plugins
In reply to: [Glossary] Tooltip HTML ContentInstead of the tooltip, the text of the page is inserted again.
https://photos.google.com/u/0/photo/AF1QipOT3uSE-aKqDeBWIXUdQuEsAEV9y4oGwujTtu1a?hl=de
- This reply was modified 3 months ago by Thorsten Hoeppner.
Forum: Plugins
In reply to: [Glossary] Tooltip HTML Contentadd_filter( 'glossary_tooltip_html', function( $tooltip, $excerpt, $photo, $post_id, $noreadmore ) {
$HTML = get_the_content($post_id);
return str_replace(strip_tags($HTML), $HTML, $tooltip);
}, 10, 5 );Unfortunately, that doesn’t work either.
Forum: Plugins
In reply to: [Glossary] Tooltip HTML Content
add_filter( 'glossary_tooltip_html', function( $tooltip, $excerpt, $photo, $post_id, $noreadmore ) {
return "<span class='hidden glossary-tooltip-content clearfix'><span class='glossary-tooltip-text'>" . get_the_content($post_id) . "</span></span>";
}, 10, 5 );Unfortunately, something still seems to be missing for it to be recognized as a tooltip.
Forum: Plugins
In reply to: [Glossary] Tooltip HTML ContentI know that, but I haven’t been able to figure out how to get the content with tags using the filter.
The example code makes no recognizable difference.I can also change the colours only once at a time and then no colour selector appears.
Forum: Plugins
In reply to: [Qubely - Advanced Gutenberg Blocks] Table of Content – No Header FoundI have the same problem. Table of Contents always reports “No headers found”.