View Single Post
  #4   IP: 173.255.223.117
Old 2014-10-01, 08:21 AM
Kelsey Kelsey is offline
初级会员
 
Join Date: 2012-09-08
Posts: 1
Kelsey 现在声名狼藉
Default

skin/common_files/customer/help/general.tpl

change
Code:
{foreach from=$pages_menu item=p name=pages}
      <li>{include file="customer/buttons/button.tpl" button_title=$p.title href="pages.php?pageid=`$p.pageid`" style="link"}</li>
{/foreach}
to

Code:
{foreach from=$pages_menu item=p name=pages}
{if $pages_menu[pg].orderby gt "60"}
      <li>{include file="customer/buttons/button.tpl" button_title=$p.title href="pages.php?pageid=`$p.pageid`" style="link"}</li>
    {/if}
{/foreach}
Reply With Quote