I just installed mchat on a new style which inherits from prosilver, no problem since i did this before, but for some reason it didn't work when clicking the @.
So i went looking, and saw that the link to the editor.js was looking for in in my style folder, instead of the prosilver folder. (because of the new T_SUPER_TEMPLATE_PATH)
so i changed in
mchat_body.html
Code: Select all
<script type="text/javascript" src="{T_TEMPLATE_PATH}/editor.js"></script>
to
Code: Select all
<script type="text/javascript" src="{T_SUPER_TEMPLATE_PATH}/editor.js"></script>
maybe you can add this to your faq for future styles.