Change Url Of View Orders

At the moment my orders>view orders leads to

dispatch=orders.manage

Id like to be able to change it to the path of an advanced search i created if possible,

dispatch=orders.manage&view_id=165&

thanks

john

Try in

app/schemas/menu/menu.php

change

                'view_orders' => array(
                    'href' => 'orders.manage',
                    'alt' => 'order_management',
                    'position' => 100,
                ),

to

                'view_orders' => array(
                    'href' => 'orders.manage?view_id=165',
                    'alt' => 'order_management',
                    'position' => 100,
                ),

Then clear cache

(!) Not tested

P.S. It can be done with the My changes addon