MyBB Community Forums

Full Version: make edit just full edit (simple click)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
venturebb.net/forum

Is it possible to change the edit from displaying a quick and full edit to taking the user to the editor with a simple click? The menu is blocked fromt he postbit ad
postbit_edit template

Remove:

<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>