How to change Admin Menu in Groupon Clone
Note:Before you make any changes , Make sure you backup every file
Change Admin Menu:
To do this goto include/function/current.php
Find this function current_backend() {
global $INI;
$a = array(
'/manage/misc/index.php' => 'Home',
'/manage/team/index.php' => 'Deal',
'/manage/order/index.php' => 'Order',
'/manage/coupon/index.php' => $INI['system']['couponname'],
'/manage/user/index.php' => 'User',
'/manage/partner/index.php' => 'Partner',
'/manage/market/index.php' => 'Marketing',
'/manage/category/index.php' => 'Category',
'/manage/vote/index.php' => 'Survey',
'/manage/credit/index.php' => 'Credit',
'/manage/system/index.php' => 'Setting',
);
Just Edit above code.