About Extension

Extensions is all code added the the theme that not available as default. These can include all code like JavaScript library integrations, CSS, and more.


NEOS Extension List

NEOS theme also come with some extension that not installed as default. You need to install it manually if you want. This extension system is designed to optimize theme. This is because not all features are needed for some blog. You can install only the features that are truly necessary. The complete list of extensions can be found on the Extension List page.


Other Additional code

In the XML theme, there are two sections specifically provided for code additions. These two sections are head_extensions and body_extensions.

All additional code inside both section will not deleted during update by using NEOS Theme Updater Tool. So that important to always put your additonal code inside these sections.


head_extensions In installation/integration guides available online, you will often come across tutorials instructing you to place code between <head> and </head>. For such instructions, place the code inside head_extensions - (View).

In the XML Editor, to navigate this section you can search for id='head_extensions'


body_extensions In installation/integration guides available online, you will often come across tutorials instructing you to place code before the </body> tag. For such instructions, place the code inside body_extensions - (View).

In the XML Editor, to navigate this section you can search for id='body_extensions'
Have Question?