MyBB Community Forums

Full Version: Smilies are not clickable
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
While creating a new thread or new reply, the smilies in the box are not clickable, even though they're set to be clickable in my settings.

Does anyone know any possible reasons for this?
Is it any JS issue?
Link please ...
(2013-12-06, 02:18 PM)effone Wrote: [ -> ]Is it any JS issue?
Link please ...

I'm not sure.

Link: http://zwiv.net/
Generally it happens if there is conflict, I can't check thoroughly as I have no login. Still:

Try adding the no-conflict at your headerinclude template and see what happens.

In headerinclude template find:
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>

and add just after that:

<script type="text/javascript">jQuery.noConflict();</script> 

and see what happens ...
(2013-12-06, 02:31 PM)effone Wrote: [ -> ]Generally it happens if there is conflict, I can't check thoroughly as I have no login. Still:

Try adding the no-conflict at your headerinclude template and see what happens.

In headerinclude template find:
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>

and add just after that:

<script type="text/javascript">jQuery.noConflict();</script> 

and see what happens ...

That seemed to work, awesome!

I appreciate the help.

If you don't mind, could you kind of explain what exactly that does and what "conflict" could cause that? I just want to have a better understanding. I'm slowly going through the jQuery and JavaScript tutorials on Code Academy but I'm still not very familiar with everything. Toungue