wp_kses is stripping js in one of your templates
-
Your “General Calendar” skin (tpl.php) file has some javascript at the end of it, starting at line 84.
Your ‘taxonomy-mec-category.php’ template runs wp_kses on the tpl file, the javascript gets messed up.
<
becomeslt;
for example.You could fix it if you add
ob_start()
on line 84 of tpl.php and then at the end:
$this->factory->params('footer', ob_get_clean());
Viewing 2 replies - 1 through 2 (of 2 total)
Viewing 2 replies - 1 through 2 (of 2 total)
- The topic ‘wp_kses is stripping js in one of your templates’ is closed to new replies.