[toc] is not working with X-theme – add redundant [tocplus] shortcode?
-
Hi – I use the X-theme and it also uses the [toc] shortcode. It overrides the TOC+ [toc] shortcode so the table of contents doesn’t show up. I fixed it by adding a second shortcode [tocplus] as an alias to [toc], and use that to insert the table of contents. So toc.php, line 146 now reads like this:
add_shortcode( 'toc', array(&$this, 'shortcode_toc') ); add_shortcode( 'tocplus', array(&$this, 'shortcode_toc') );
Can this be added to the next update? Thanks!
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘[toc] is not working with X-theme – add redundant [tocplus] shortcode?’ is closed to new replies.