MyBB Community Forums

Full Version: <- I believe. "Full Edit" button doesn't work.
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
You When you click "edit" on the FIRST POST in a thread that has replies, you can only click "Quick Edit", and not "Full Edit". 

I have reason to believe this is jscript/theme related and not plugin, as the jscript/theme is what I change the most. I have no idea at what point it stopped working, and I'm not sure what to look for to fix it. 

Editing is enabled -- I keep on having to find that specific post ID and manually navigating to editpost.php

You can login with these details:
Username: MyBB
Password: MyBB01

This is the thread I created for this:
http://www.overclockedlan.com/showthread.php?tid=113
(It will happen on any thread, though)

I will be replying to the thread in a minute to prove my example further. 
BTW, I also wanted to include that it does this to every post but the post recent one. 
The jquery noconflict is in the headerinclude already, so I doubt that not being there would be the issue. 

Help me out Sad

This is my postbit_edit template

<a href="editpost.php?pid={$post['pid']}" id="edit_post_{$post['pid']}" title="{$lang->postbit_edit}" class="postbit_edit"><span>{$lang->postbit_button_edit}</span></a>

<div id="edit_post_{$post['pid']}_popup" class="popup_menu" style="display: none;"><div class="popup_item_container"><a href="javascript:;" class="popup_item quick_edit_button" id="quick_edit_post_{$post['pid']}">{$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")

    {

        $("#edit_post_{$post['pid']}").popupMenu();

    }

// -->
</script>
Try adding this rule to .popup_menu in global.css:
z-index: 2;
You're the best. That worked.