Home / Admin / Custom Tab Order For Dashboard
Duplicate Snippet

Embed Snippet on Your Site

Custom Tab Order For Dashboard

Code Preview
php
<?php
// Add this to your themes functions.php to change the order, rearrage the lines. First line is first item, last is last etc. 
add_filter( 'wcv_dashboard_pages_nav', 'change_nav_order'); 
function change_nav_order( $pages ){ 
	$new_nav_order = array(); 
	$new_nav_order['dashboard_home'] = $pages['dashboard_home']; 
	$new_nav_order['order'] = $pages['order']; 
	$new_nav_order['product'] = $pages['product']; 
	$new_nav_order['rating'] = $pages['rating']; 
	$new_nav_order['shop_coupon'] = $pages['shop_coupon']; 
	$new_nav_order['settings'] = $pages['settings']; 
	$new_nav_order['view_store'] = $pages['view_store']; 
	return $new_nav_order; 
}

Comments

Add a Comment