View Single Post
  #15  
Old 10-25-2007, 08:41 AM
 
tnpaintballers tnpaintballers is offline
 

Member
  
Join Date: Sep 2007
Posts: 28
 

Default Re: Direct access to orders and items

To have this in the header bar you just make these simple changes. I put this in my header bar since I already have to scroll up & down for the left menu. It has enough in it right now.

In admin_head.tpl change this code:
Code:
<tr> <td colspan="2" class="HeadThinLine"><img src="{$ImagesDir}/spacer.gif" class="Spc" alt="" /></td> </tr> <tr> <td colspan="2" class="HeadLine" align="right" height="22"> {if ($usertype eq "P" or $usertype eq "A") and $login and $all_languages_cnt gt 1} <form action="{$smarty.server.REQUEST_URI|amp}" method="post" name="asl_form"> <table cellpadding="0" cellspacing="0"> <tr> <td class="TopLabel">{$lng.lbl_current_language}:&nbsp;</td> <td> <input type="hidden" name="redirect" value="{$smarty.server.QUERY_STRING|amp}" /> <select name="asl" onchange="javascript: document.asl_form.submit()"> {section name=ai loop=$all_languages} <option value="{$all_languages[ai].code}"{if $current_language eq $all_languages[ai].code} selected="selected"{/if}>{$all_languages[ai].language}</option> {/section} </select> </td> </tr> </table> </form> {else} &nbsp; {/if} </td> </tr> <tr> <td colspan="2" class="HeadThinLine"><img src="{$ImagesDir}/spacer.gif" class="Spc" alt="" /></td> </tr>

To this code:
Code:
<tr> <td colspan="3" class="HeadThinLine"><img src="{$ImagesDir}/spacer.gif" class="Spc" alt="" /></td> </tr> <tr> <td class="HeadLine" align="right" height="22"> {if ($usertype eq "P" or $usertype eq "A") and $login and $all_languages_cnt gt 1} <form action="{$smarty.server.REQUEST_URI|amp}" method="post" name="asl_form"> <table cellpadding="0" cellspacing="0"> <tr> <td class="TopLabel">{$lng.lbl_current_language}:&nbsp;</td> <td> <input type="hidden" name="redirect" value="{$smarty.server.QUERY_STRING|amp}" /> <select name="asl" onchange="javascript: document.asl_form.submit()"> {section name=ai loop=$all_languages} <option value="{$all_languages[ai].code}"{if $current_language eq $all_languages[ai].code} selected="selected"{/if}>{$all_languages[ai].language}</option> {/section} </select> </td> </tr> </table> </form> {else} &nbsp; {/if} </td> <td class="HeadLine" align="right"> <form action="order.php"> Order ID:<input type="text" name="orderid"><input type="submit" value="find"> </form> </td> <td class="HeadLine"> <form action="product_modify.php"> Item ID:<input type="text" name="productid"><input type="submit" value="find"> </form> </td> </tr> <tr> <td colspan="3" class="HeadThinLine"><img src="{$ImagesDir}/spacer.gif" class="Spc" alt="" /></td> </tr>

Here is a picture:
http://www.tnpaintballers.com/images/xcart_mods/admin_header_bar_mod.jpg
__________________
Version 4.1.8

TN Paintballers LLC
914 N Charles G Seivers Blvd
Clinton, TN 37716
865-457-8000
www.tnpaintballers.com
Reply With Quote