2011-02-21, 12:42 AM
2011-02-21, 01:16 AM
URL and test account?
2011-02-21, 04:31 PM
My quick edit no longer works.
My edit Template code:
Forum URL: http://synthd.com/
Test Username: test
Test Password: help13
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
2011-02-21, 05:03 PM
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
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, 06:47 PM
(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!