2011-07-26 47 views

回答

0

你需要這個模板:/skin/common_files/customer/main/per_page.tpl

0

更改功能{}根/include/search.php文件/

例如:

$perPageValues = array(); 

    for ($i = 50; 460 >= $i; $i = $i + 100) { 
     $perPageValues[] = $i; 
    } 

    $smarty->assign('per_page',   'Y'); 
    $smarty->assign('per_page_values', $perPageValues); 

} 
相關問題