"[Template] is disabled" issue.
Do not be afraid of this message. It means that there is no appropriate CMS content to show.
Themler displays real website content (posts pages, etc). If there is nothing to show Themler shows this message with instruction on how to add necessary content. Simply follow the suggested steps to enable the template.
Joomla: The most important condition is that this page should be accessible from the website front end. In other words you should have a menu with the link to this page on the website front end.
You added a control/content to the Home template and it does not appear on all other templates (website pages).
The templates in Themler theme are independent. Therefore to show some control, for example Horizontal Menu, on all website pages you should add it to all templates.
The following article about sharing controls between templates should be helpful.
Missing Google Fonts, strange characters instead of icons, etc.
All theses issues happen due to cross-origin issue. It mean that Cross-Origin Resource Sharing (CORS) is disabled. Please add appropriate header to the .htaccess
file:
<IfModule mod_headers.c>
Header add Access-Control-Allow-Origin "http://www.YOUR_SITE.COM"
</IfModule>
http://enable-cors.org/server.html
### "[Template] is disabled" issue. !template-disabled.png! Do not be afraid of this message. It means that there is no appropriate CMS content to show. Themler displays real website content (posts pages, etc). If there is nothing to show Themler shows this message with instruction on how to add necessary content. Simply follow the suggested steps to enable the template. <b>Joomla:</b> The most important condition is that this page should be accessible from the website front end. In other words you should have a menu with the link to this page on the website front end. ### You added a control/content to the Home template and it does not appear on all other templates (website pages). The templates in Themler theme are independent. Therefore to show some control, for example Horizontal Menu, on all website pages you should add it to all templates. The following [article about sharing controls between templates](page:4783) should be helpful. ### Missing Google Fonts, strange characters instead of icons, etc. All theses issues happen due to cross-origin issue. It mean that Cross-Origin Resource Sharing (CORS) is disabled. Please add appropriate header to the `.htaccess` file: `<IfModule mod_headers.c>` ` Header add Access-Control-Allow-Origin "http://www.YOUR_SITE.COM"` `</IfModule>` http://enable-cors.org/server.html