How To Add A Menu Item In Admin Panel

How can we add a custom menu item to open a page which opens a third party website in the same frame ?

Unfortunately, menu schema cannot be extended with the external URLs

Unfortunately, menu schema cannot be extended with the external URLs

Cant we put a manual value of an external link ?

Cant we put a manual value of an external link ?

With the module we did the following:

- extend default schema with custom dispatch. E.g. custom_redirect.google

- create the custom_redirect.php controller with the following code

if ($mode == 'google') {
    fn_redirect('http://google.com', true);
}

With the module we did the following:

- extend default schema with custom dispatch. E.g. custom_redirect.google

- create the custom_redirect.php controller with the following code

if ($mode == 'google') {
    fn_redirect('http://google.com', true);
}

Hi Ecom,

Can you please tell the file names & location where we need to add this info ?

Thx

Please find some details here:

http://docs.cs-cart.com/4.3.x/developer_guide/addons/directories.html

Controller can be placed to the app/addons/YOUR_ADDON/controllers/backend/ directory