MyBB Community Forums

Full Version: Quick edit?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
My quick edit no longer works. Any help?
URL and test account?
My quick edit no longer works.

My edit Template code:

<a href="editpost.php?pid={$post['pid']}" id="edit_post_{$post['pid']}"><img src="{$theme['imglangdir']}/postbit_edit.gif" alt="{$lang->postbit_edit}" title="{$lang->postbit_edit}" /></a>
<div id="edit_post_{$post['pid']}_popup" class="popup_menu" style="display: none;"><div class="popup_item_container"><a href="javascript:;" onclick="Thread.quickEdit({$post['pid']});" class="popup_item">{$lang->postbit_quick_edit}</a></div><div class="popup_item_container"><a href="editpost.php?pid={$post['pid']}" class="popup_item">{$lang->postbit_full_edit}</a></div></div>
<script type="text/javascript">
// <!--
	if(use_xmlhttprequest == "1")
	{
		new PopupMenu("edit_post_{$post['pid']}");
	}
// -->
</script>

Forum URL: http://synthd.com/
Test Username: test
Test Password: help13
Not terribly sure why you felt the need to post a new thread on this rather than just post in your first one, threads merged...

The problem is that you've got jQuery included in your theme and it's conflicting with the MyBB javascript. Best thing to do is go through all the jQuery code and change all occurrences of $ to jQuery
(2011-02-21, 05:03 PM)MattRogowski Wrote: [ -> ]Not terribly sure why you felt the need to post a new thread on this rather than just post in your first one, threads merged...

The problem is that you've got jQuery included in your theme and it's conflicting with the MyBB javascript. Best thing to do is go through all the jQuery code and change all occurrences of $ to jQuery

I completely forgot I posted this the first time, my bad Matt!