• Resolved Pierre236

    (@pierreto)


    Hi,

    I use another plugin for TOC and add shortcode [toc] on many page where i need.

    But the plugin is not more updated and i would like to know if it’s possible to change your shortcode by this one, then i don’t need to change all my post.

    Thanks

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author LuckyWP

    (@theluckywp)

    Hello, @pierreto !

    In version 1.1.0 we added hook filter lwptoc_shortcode_tag. This is solution for you:

    add_filter('lwptoc_shortcode_tag', function ($tag) {
        return 'toc';
    });

    Add this code into file functions.php in theme directory.

    • This reply was modified 5 years, 11 months ago by LuckyWP.
    Thread Starter Pierre236

    (@pierreto)

    Hi,

    Thanks a lot, it work well!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change shortcode [lwptoc] to [toc]’ is closed to new replies.