Michael
Forum Replies Created
-
Hi, sorry for the bad experience. Based on what you said, I think the issue comes from a legacy option that prevents the TOC from showing in the content if there are less than 3 headings on the page.
Have you tried the plugin on a long page with multiples headings ?
If you tested the plugin on a page with very little content that has less than 3 headings, it probably did not show because of that. This was originally designed like that because TOCs are unnecessary for tiny pages but I understand this was not obvious.
You can adjust this option under General > Table of contents > Minimal headings count and set this to 0 to have the TOC to show at all times.
In some rare cases, there could be compatibility issues but I can’t tell if that’s the case for your particular install.
I invite you to try the plugin again with this information in mind.
Thank you for your feedback.
Forum: Plugins
In reply to: [Joli Table Of Contents] z-index optionYes, you can adjust the z-index using the built-in CSS variable like in the example below:
:root{
--jtoc-z-index: 123;
}Make sure to add this to the Custom CSS section of the settings under Styles and adjust the value of the z-index accordingly to your needs.
Forum: Reviews
In reply to: [Joli Table Of Contents] The best TOC pluginThanks for the kind review π
Forum: Plugins
In reply to: [Joli Table Of Contents] Estimated reading time not appearingThe way the estimated reading time is works is: the post content (from the_content or what you type in the Gutenberg editor) is stripped from all HTML using wp_strip_all_tags. The actual table of contents is excluded from the count though.
- Yes it includes any text before the first H2 or before the TOC (but only within the_content scope)
- It includes any type of content in the calculation, including tables.
Basically any content that’s in the post content, stripped from the HTML.
Scripts and styles are excluded.
For now, there’s no way to alter the way this works (like exclude specific elements) but feel free to share any suggestions.
Forum: Reviews
In reply to: [Joli FAQ SEO - WordPress FAQ Plugin] Ridiculous experience – waste of time!Hi,
Thanks for taking the time to share your feedback.
If you’re using the auto-insert feature, it may not be immediately obvious, but it is possible to disable the TOC on the homepage in the FREE version using the
joli_toc_disable_toc_customfilter. For example:add_filter('joli_toc_disable_toc_custom', 'toc_disable', 10, 3);
function toc_disable($value, $content, $post)
{
// Disable TOC on homepage
if (is_front_page() || is_home()) {
return true;
}
return $value;
}This allows you to fully control where the TOC appears, including disabling it on the homepage.
If you ever run into this kind of limitation, feel free to open a thread in the support forum. I’m always happy to help, and many improvements and new features are added based directly on user feedback when it makes sense.
Also, it looks like this review may have been posted on the wrong support forum. Joli FAQ SEO is not a table of contents plugin, while the feedback likely relates to Joli Table of Contents.
If this helped clarify things, I would really appreciate if you could consider updating or removing the review.
If you’d like, I’m also happy to help implement this quickly on your site.
Thanks again for your feedback.
Forum: Plugins
In reply to: [Joli Table Of Contents] Estimated reading time not appearingGreat !
Feel free to share any suggestions to improve this feature since this is a brand new feature π
Forum: Plugins
In reply to: [Joli Table Of Contents] Estimated reading time not appearingHi,
First, make sure you cleared all of your caches (cache plugin, server cache, cloudflare, etc…).
Have you tried other positions ? Does it work on other pages ?
Try changing the color as well, just in case.
If none of this works, maybe the calculation fails for some reason. And if it does fail, it will not show.
That feature has not been tested with OceanWP specifically though.
Please let me know.
Forum: Plugins
In reply to: [Joli Table Of Contents] v3 UPDATEβ Please Read Before UpdatingHi Cyril,
Can you provide more details on what’s not working in your particular case ?
Thank you!
Forum: Reviews
In reply to: [Joli Table Of Contents] Works perfectly and has lots of customizabilityThank you so much for your very positive review, this is highly appreciated π
Awesome ! Glad your resolved this π
Hi, thank you for your feedback. As of today, Divi 5 has not been tested with Joli TOC.
However, the way you describe the issues makes me think it could be either Divi using its own system instead of leveraging “the_content”, or its engine somehow takes over and breaks the anchors generated by Joli TOC. Can’t tell for sure at of now.
That said, if you use the [joli-toc] shortcode in a sidebar (outside of the main content), you should activate the “Widget support” setting whether you use Divi 5 or not, and you should not need to activate the Auto-insert if you already have the shortcode in a sidebar.
Let me know if you can sort things out with these settings.
Forum: Reviews
In reply to: [Joli Table Of Contents] Great plugin and good supportThanks a lot for your feedback with the plugin and the positive review. Really appreciate that !
Forum: Reviews
In reply to: [Joli Table Of Contents] Fantastic supportThank you so much for the kind & supportive review!
Forum: Plugins
In reply to: [Joli Table Of Contents] Menu issue – duplicate numbers in contentWithout any further follow-up, this topic will be marked as resolved.
Forum: Plugins
In reply to: [Joli Table Of Contents] Links are not working in CPTWithout any further follow-up, this topic will be marked as resolved.