Hello,
I’m new with CS-Cart and currently want to explore more about the features. Currently, I want to explore about addons and menu admin. I’m trying to add a new tab menu on admin menu, but I have a obstacle when adding the menu. this is my menu.post.php on app/myaddons/schemas/menu/menu.post.php
<?php
$schema['central']['admin_vendor_new_menu'] = [
'title' => 'New Menu',
'attrs' => [
'class' => 'is-addon'
],
'position' => 700,
'href' => '#',
];
return $schema;
But the menu didn’t show up. May i know there’s missing step from my process? thank you.