Change the Order in which the Sportsbook Tab displays in the Navigation Menu.
To do this, you will need to put your site into DEBUG MODE as you need to access the Development Tab in the Admin CP. Once in the Development area, you want to click on the Code Event Listeners link to bring up the main listing of all Code Event Listeners that have been added by Addons. Since you are wanting to change TAB order, you should FILTER the list so that only the navigation_tabs listeners are displayed. As you can see here, there are several addons that are adding tabs to the navigation menu. Click on the link for the appropriate Tab to edit its execution order (see next image)
As mentioned, each Tab that is added via the navigation_tabs Code Event Listener has a Callback Execution Order. The default is set at 10, which most addon developers just leave it set at. However, you can adjust the Callback Execution Order to set the order of the tabs the way you want them (within the Position Group that they are in).
NOTE: There are 3 dynamic insert positions for Tabs. MOST (not all) hard code that position into the listener file (a php file associated with the listener). Some Addons (like XFMG, Showcase, AMS, Sportsbook) have an OPTION that lets you set which of the 3 positions you want the tab inserted into.
<!-- extra tabs: home -->
<!-- extra tabs: middle -->
<!-- extra tabs: end -->
home = inserted between the HOME Tab and FORUM Tab.
middle = inserted between the FORUM tab and MEMBERS tab
end = inserted after the MEMBERS Tab
If one tab is in the middle and the other in the end, you can't change the execution order to put the tab that is in the middle at the END. You'd have to either change the OPTION (if there is one) or edit the file and change the hard coded value.
