Title: HTML
Last modified: September 1, 2016

---

# HTML

 *  Resolved [John](https://wordpress.org/support/users/dpinc/)
 * (@dpinc)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/html-40/)
 * Please support html code if possible. Thanks
 * [https://wordpress.org/plugins/additional-content/](https://wordpress.org/plugins/additional-content/)

Viewing 15 replies - 1 through 15 (of 21 total)

1 [2](https://wordpress.org/support/topic/html-40/page/2/?output_format=md) [→](https://wordpress.org/support/topic/html-40/page/2/?output_format=md)

 *  Plugin Author [keesiemeijer](https://wordpress.org/support/users/keesiemeijer/)
 * (@keesiemeijer)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/html-40/#post-7553191)
 * Sorry for the late reply
 * Are you an admin of the site?
    A filter is used to filter the HTML. To stop this
   use this in your theme’s functions.php file
 *     ```
       add_filter( 'ac_additional_content_filter_html', '__return_false' );
       ```
   
 * btw:
    consider creating a [child theme](http://codex.wordpress.org/Child_Themes)
   instead of editing your theme directly – if you upgrade the theme all your modifications
   will be lost. Or [create a plugin](https://wordpress.org/plugins/pluginception/)
   with the code above.
 *  Thread Starter [John](https://wordpress.org/support/users/dpinc/)
 * (@dpinc)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/html-40/#post-7553192)
 * Yes admin
    Sorry i mean the content don’t support javascript code right? The 
   default is support html and the filter is to stop using html code?
 * Ok thanks
 *  Plugin Author [keesiemeijer](https://wordpress.org/support/users/keesiemeijer/)
 * (@keesiemeijer)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/html-40/#post-7553193)
 * >  The default is support html and the filter is to stop using html code?
 * The default is not to allow html.
 * Maybe I should reconsider and allow html for admins by default.
 * I’m glad you’ve got it resolved 🙂
 *  Thread Starter [John](https://wordpress.org/support/users/dpinc/)
 * (@dpinc)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/html-40/#post-7553195)
 * By default should support all html code would be better in my opinion. Thanks
 *  Thread Starter [John](https://wordpress.org/support/users/dpinc/)
 * (@dpinc)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/html-40/#post-7553275)
 * It doesn’t support pages with templates any ideas?
 *  Plugin Author [keesiemeijer](https://wordpress.org/support/users/keesiemeijer/)
 * (@keesiemeijer)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/html-40/#post-7553277)
 * I’ve confirmed that this is a bug and will update the plugin this week.
 * Thanks for reporting 🙂
 *  Plugin Author [keesiemeijer](https://wordpress.org/support/users/keesiemeijer/)
 * (@keesiemeijer)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/html-40/#post-7553286)
 * [@dpinc](https://wordpress.org/support/users/dpinc/)
 * It should be resolved by updating to the new version (1.3.0).
 *  Plugin Author [keesiemeijer](https://wordpress.org/support/users/keesiemeijer/)
 * (@keesiemeijer)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/html-40/#post-7553287)
 * The plugin now also supports html for users with the unfiltered_html capability(
   superadmin, admin and editor role).
    [https://github.com/keesiemeijer/additional-content/tree/develop#html-in-additional-content](https://github.com/keesiemeijer/additional-content/tree/develop#html-in-additional-content)
 * If you are an admin you can remove the filter from your functions.php
 *  Thread Starter [John](https://wordpress.org/support/users/dpinc/)
 * (@dpinc)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/html-40/#post-7553288)
 * It doesn’t work on layers templates? Any ideas?
    [https://github.com/Obox/layerswp](https://github.com/Obox/layerswp)
 *  Thread Starter [John](https://wordpress.org/support/users/dpinc/)
 * (@dpinc)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/html-40/#post-7553289)
 * Standard WP templates will show without any problem
 *  Plugin Author [keesiemeijer](https://wordpress.org/support/users/keesiemeijer/)
 * (@keesiemeijer)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/html-40/#post-7553290)
 * Do you know in what template files it’s not working (layerswp)?
 *  Thread Starter [John](https://wordpress.org/support/users/dpinc/)
 * (@dpinc)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/html-40/#post-7553291)
 * Yes you can try to use the templates on pages and simply enter anything inside
   to see it will never appear at all
 *  Plugin Author [keesiemeijer](https://wordpress.org/support/users/keesiemeijer/)
 * (@keesiemeijer)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/html-40/#post-7553292)
 * I’m guessing you mean the pages from the page builder. Normal pages seem to work
   just fine.
 * Layers page builder pages are not the same as WordPress pages. Do you see the
   additional content editor when editing these pages?
 *  Thread Starter [John](https://wordpress.org/support/users/dpinc/)
 * (@dpinc)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/html-40/#post-7553293)
 * Yes you are right using layers pages
 * AC – Yes do have
 * Most extra content/field not working with any other templates pages/builder if
   not wrong but some work fine like ACF
 *  Plugin Author [keesiemeijer](https://wordpress.org/support/users/keesiemeijer/)
 * (@keesiemeijer)
 * [9 years, 9 months ago](https://wordpress.org/support/topic/html-40/#post-7553294)
 * I see. The problem is some (or all) of those page templates don’t display post
   content (as written in a content editor). That’s why this plugin does not know
   where to append the additional content.
 * This plugin depends on templates to use `the_content()` function to display normal
   post content. I’m sorry, but there is not much that can be done about this.
 * [https://developer.wordpress.org/reference/functions/the_content/](https://developer.wordpress.org/reference/functions/the_content/)

Viewing 15 replies - 1 through 15 (of 21 total)

1 [2](https://wordpress.org/support/topic/html-40/page/2/?output_format=md) [→](https://wordpress.org/support/topic/html-40/page/2/?output_format=md)

The topic ‘HTML’ is closed to new replies.

 * ![](https://ps.w.org/additional-content/assets/icon.svg?rev=1270237)
 * [Additional Content](https://wordpress.org/plugins/additional-content/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/additional-content/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/additional-content/)
 * [Active Topics](https://wordpress.org/support/plugin/additional-content/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/additional-content/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/additional-content/reviews/)

 * 21 replies
 * 2 participants
 * Last reply from: [keesiemeijer](https://wordpress.org/support/users/keesiemeijer/)
 * Last activity: [9 years, 9 months ago](https://wordpress.org/support/topic/html-40/page/2/#post-7553300)
 * Status: resolved