I'm creating a new module from scratch by following this tutorial: https://devdocs.prestashop.com/1.7/modules/creation/
- created directory and PHP file: /modules/my_featcategories/my_featcategories.php
- I added this code:
<?php if (!defined('_PS_VERSION_')) { exit; } class My_FeatCategories extends Module { }
Tutorial says:
QuoteAt this stage, if you place the module’s folder on the /modules folder, the module can already be seen in the “Modules” page in the back office, in the “Other modules” section – albeit with no real name nor thumbnail.
Yet when i go to Module manager, it doesn't appear in 'Others' section and I can't find it.
Did I missed something?