MyBB Community Forums

Full Version: Menu Edit
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
How i can enable menu edit at new post or Full edit post ? like this
[Image: screen.jpg]
My Forum Cant Do that, Cek at http://inferniaservers.com/forum/ and try to posting Smile
Thank you, sorry for bad english.
create a test user account on your forum and post the login details here so that someone can check
user : test
password: test10
find code like below in headerinclude template (in ungrouped templates)
<script>
  $(function() {
    $( document ).tooltip();
  });
  </script>

change it to below code and save the template. then check editor and post back the result
<script type="text/javascript">
  jQuery(function($) {
    $( document ).tooltip();
  });
  </script>
Like this ?
<link rel="alternate" type="application/rss+xml" title="{$lang->latest_threads} (RSS 2.0)" href="{$mybb->settings['bburl']}/syndication.php" />
<link rel="alternate" type="application/atom+xml" title="{$lang->latest_threads} (Atom 1.0)" href="{$mybb->settings['bburl']}/syndication.php?type=atom1.0" />
<meta http-equiv="Content-Type" content="text/html; charset={$charset}" />
<meta http-equiv="Content-Script-Type" content="text/javascript" />
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/jquery.js?ver=1800"></script>
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/jquery.plugins.min.js?ver=1800"></script>
<script type="text/javascript" src="{$mybb->asset_url}/jscripts/general.js?ver=1800"></script>

{$stylesheets}
<script type="text/javascript">
<!--
 lang.unknown_error = "{$lang->unknown_error}";

 lang.select2_match = "{$lang->select2_match}";
 lang.select2_matches = "{$lang->select2_matches}";
 lang.select2_nomatches = "{$lang->select2_nomatches}";
 lang.select2_inputtooshort_single = "{$lang->select2_inputtooshort_single}";
 lang.select2_inputtooshort_plural = "{$lang->select2_inputtooshort_plural}";
 lang.select2_inputtoolong_single = "{$lang->select2_inputtoolong_single}";
 lang.select2_inputtoolong_plural = "{$lang->select2_inputtoolong_plural}";
 lang.select2_selectiontoobig_single = "{$lang->select2_selectiontoobig_single}";
 lang.select2_selectiontoobig_plural = "{$lang->select2_selectiontoobig_plural}";
 lang.select2_loadmore = "{$lang->select2_loadmore}";
 lang.select2_searching = "{$lang->select2_searching}";

 var cookieDomain = "{$mybb->settings['cookiedomain']}";
 var cookiePath = "{$mybb->settings['cookiepath']}";
 var cookiePrefix = "{$mybb->settings['cookieprefix']}";
 var deleteevent_confirm = "{$lang->deleteevent_confirm}";
 var removeattach_confirm = "{$lang->removeattach_confirm}";
 var loading_text = '{$lang->ajax_loading}';
 var saving_changes = '{$lang->saving_changes}';
 var use_xmlhttprequest = "{$mybb->settings['use_xmlhttprequest']}";
 var my_post_key = "{$mybb->post_code}";
 var rootpath = "{$mybb->settings['bburl']}";
 var imagepath = "{$theme['imgdir']}";
   var yes_confirm = "{$lang->yes}";
 var no_confirm = "{$lang->no}";
 var MyBBEditor = null;
 var spinner_image = "{$theme['imgdir']}/spinner.gif";
 var spinner = "<img src='" + spinner_image +"' alt='' />";
// -->
</script>
<link href='//maxcdn.bootstrapcdn.com/font-awesome/4.1.0/css/font-awesome.min.css' rel='stylesheet' type='text/css'>

<script src="images/dark1.8/jquery-ui.js"></script>
<script type="text/javascript">
  jQuery(function($) {
    $( document ).tooltip();
  });
  </script>

but still did't change anything,  Sad
^ would you like to PM me temporary access to admin panel & wait for some time ..
cek PM Smile

(2014-09-17, 02:15 PM).m. Wrote: [ -> ]^ would you like to PM me temporary access to admin panel & wait for some time ..

If i'm remove
jQuery.noConflict();
it's work on my current Theme (MyCraft) . but rep, report, moderation tool not work,
Can you help me again ?
Thank you Smile
^ merged posts do not get notified to the responders. you could have replied my PM.
cek PM again Smile
^ some of the referred issues are fixed. others should be taken care by you
upgrading guidance Wrote:Visit your Admin Control Panel, then go to Templates & Style > Templates > Find Updated Templates. This will show you a list of all the templates that have changed during the upgrade.

You can either revert these templates to their default - meaning all the changes you've made to it will be removed - or you can see a Diff Report which will show you exactly what's changed. If you have a custom theme installed, it is probably best that you look at the Diff Report and apply the changes you need.
Pages: 1 2