MyBB Community Forums

Full Version: Can't see editor
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Like title says ,can't see editor from new theme 1.8
Link to your forum??
......
Can you give us a test account?
tipsy.js file is not loading. check if the file exists in deluxe folder

or you can comment out below code segment in headerinclude template and check if the editor appears
<script src="images/deluxe/tipsy.js"></script>
<script> 
jQuery(function() {
jQuery("a").tipsy({gravity: jQuery.fn.tipsy.autoNS});
jQuery("img").tipsy({gravity: jQuery.fn.tipsy.autoNS});
jQuery("i").tipsy({gravity: jQuery.fn.tipsy.autoNS});
jQuery("button").tipsy({gravity: jQuery.fn.tipsy.autoNS});
  });
</script>
can't find deluxe folder and this script not working
brrrrr
can you PM me the forum url and a temp admin account.....


EDIT: The referred issue has been fixed... the reason it was not working was, you have renamed the theme's images folder to wow but the script was loaded from deluxe folder... i change the script link as follows and it started working.....

<script src="images/wow/tipsy.js"></script>
Thanks to all now its working Wink

Problem SOLVED