• piotrk87

    (@piotrk87)


    This plugin has a nice wizard… and does not allow you to turn off TOC on homepage, but requires a PRO version for this. This is a standard functionality of all free TOC plugins. What a waste of time! Who event thinks of adding a TOC on homepage! LOL

Viewing 1 replies (of 1 total)
  • Michael

    (@wpjmike)

    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_custom filter. 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.

Viewing 1 replies (of 1 total)

You must be logged in to reply to this review.