Jump to content

Prestashop 1.7.5 Custom module not in tab in module list


Recommended Posts

Hello, I try create new custom module, but module not in the Shipping & Logistics tab, it's in the Other tab.
Here my code:

public function __construct()
    {
        $this->name = "test";
        $this->tab = "shipping_logistics";
        $this->version = "1.0.0";
        $this->author = "test";
        $this->need_instance = 0;
        $this->secure_key = Tools::encrypt($this->name);
        $this->bootstrap = true;
        $this->displayName = $this->l('test');
        $this->description = $this->l('test');
        parent::__construct();
    }

Can anyone help me? Thanks

2019-02-26_1733.png

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...