Jump to content

Edit History

mantas393

mantas393

I'm creating a new module from scratch by following this tutorial: https://devdocs.prestashop.com/1.7/modules/creation/

  1. created directory and PHP file: /modules/my_featcategories/my_featcategories.php
  2. I added this code: 
<?php

if (!defined('_PS_VERSION_')) {
    exit;
}

class My_FeatCategories extends Module
{
    
}

 

Tutorial says:

Quote

At 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?

mantas393

mantas393

I'm creating a new module from scratch by following this tutorial: https://devdocs.prestashop.com/1.7/modules/creation/

  1. created directory and PHP file: /modules/my_featcategories/my_featcategories.php
  2. I added this code: 
<?php

if (!defined('_PS_VERSION_')) {
    exit;
}

class My_FeatCategories extends Module
{
    
}

 

Tutorial says:

Quote

At 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 there.

Did I missed something?

×
×
  • Create New...