MyBB Community Forums

Full Version: Quick Edit Not Working
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
Hi guys. Sadly, I have another error on my site. The "Quick Edit" option isn't working. When you click it, nothing happens at all. The Full Edit button still works fine though.

If you need an account to test it out, I'll PM you a Mod account if I trust you.

The site is http://forum.toontownagents.com
Open headerinclude template and remove this;
<script type="text/javascript">

    jQuery.noConflict();

    jQuery(document).ready(function(){

        jQuery(".post_buttons img").fadeTo("fast", 0.5);

        jQuery(".post_buttons img").hover(function(){

            jQuery(this).fadeTo("fast", 1.0);

    },function(){

            jQuery(this).fadeTo("fast", 0.5);

    });

    });

</script>

That's where the error throws.

OR

Disable "Fading Postbit Buttons" plugin.
You have a number of jquery scripts. In addition to that you have other jscripts. One of these is causing a conflict which is causing the quick edit script to not execute.

Either disable the jscript stuff one by one to find which one is the culprit, or use firebug on firefox to determine where the scripts are erroring out.

PM a test user account and I could look at it.
(2011-03-30, 11:32 AM)Yaldaram Wrote: [ -> ]Open headerinclude template and remove this;
<script type="text/javascript">

    jQuery.noConflict();

    jQuery(document).ready(function(){

        jQuery(".post_buttons img").fadeTo("fast", 0.5);

        jQuery(".post_buttons img").hover(function(){

            jQuery(this).fadeTo("fast", 1.0);

    },function(){

            jQuery(this).fadeTo("fast", 0.5);

    });

    });

</script>

That's where the error throws.

OR

Disable "Fading Postbit Buttons" plugin.

Thanks. Is there any way to keep the fading postbit buttons and still keep the quickedit? (I'm guessing no since you told me to disable it, but it doesn't hurt to ask. Toungue
You would need to ask to the author.
(2011-03-30, 08:01 PM)Yaldaram Wrote: [ -> ]You would need to ask to the author.

Alright. But one problem, when I remove it, everything seems to go out of whack. The edit button doesn't show the dropdown box to choose quickedit, the shoutbox doesn't load, etc.
Bump..
You probably had erased something more. I said just remove this;
<script type="text/javascript">

    jQuery.noConflict();

    jQuery(document).ready(function(){

        jQuery(".post_buttons img").fadeTo("fast", 0.5);

        jQuery(".post_buttons img").hover(function(){

            jQuery(this).fadeTo("fast", 1.0);

    },function(){

            jQuery(this).fadeTo("fast", 0.5);

    });

    });

</script>

Make sure xmlhttp.php has the correct code, if not re-download and overwrite old file.
I did just remove that, Yaldaram. I checked a few times to make sure.

I'll try the xmlhttp.php thing. Also, I just saw a post saying that the WYSIWYG editor was causing them quick edit problems, and I have that installed too, so that may be the real problem.
Found the problem. It was the editor. I disabled editor in quick reply and it works fine now.
Pages: 1 2