Add New List Item In Products Menu

Try this solution:










[quote name='eComLabs' timestamp='1396430249' post='180729']

@anilkumar,



Please create the “app/addons/my_changes/schemas/menu/menu.post.php” with the following content:



$schema['central']['products']['items']['your_item_name'] = array(
'href' => 'your_controller.your_mode',
'position' => 900
);
return $schema;




Then go to the “Language->Translations” page and create the “your_item_name” language vriable.



Enable the “My changes” add-on, clear the cache and check the result.



Thanks.

[/quote]



Thank you! I was able to add an item to our admin menu. However this site uses Multi-Vendor and I need the link to show up in vendor admin as well. Do I need to add it to another location?

[quote name='Angeltown' timestamp='1426583156' post='208143']

Thank you! I was able to add an item to our admin menu. However this site uses Multi-Vendor and I need the link to show up in vendor admin as well. Do I need to add it to another location?

[/quote]



No, it should be displayed in the vendor panel if you did not disable it

[quote name='eComLabs' timestamp='1426584217' post='208146']

No, it should be displayed in the vendor panel if you did not disable it

[/quote]



That's what it was. I was linking to a page and I didn't have 'View Pages' selected for that user group. Fixed. Thank you!

@anilkumar,

Please create the "app/addons/my_changes/schemas/menu/menu.post.php" with the following content:

$schema['central']['products']['items']['your_item_name'] = array(
    'href' => 'your_controller.your_mode',
    'position' => 900
);
return $schema;
Then go to the "Language->Translations" page and create the "your_item_name" language vriable.

Enable the "My changes" add-on, clear the cache and check the result.

Thanks.

Hi eComlab,

How can we add target="_blank" to above modification link list? Because i want to add url and vendor click it and go to different tab.

Thank you so much for your help

Try

$schema['central']['products']['items']['your_item_name'] = array(
    'href' => 'your_controller.your_mode',
    'position' => 900,
    'attrs' => array(
        'href' => array(
            'target' => '_blank'
        )
    )
);
return $schema;

It works, awesomeeee. Thank you so much eComLabs :idea: ,