Jump to content

No template found for /x/themes/classic/category.tpl


Thommen

Recommended Posts

I use the default PrestaShop template. When I enter the category I have an error ↓

[PrestaShopException]

No template found for /x/themes/classic/category.tpl
at line 68 in file classes/Smarty/TemplateFinder.php

63. return $tpl; 64. } 65. } 66. } 67. 68. throw new PrestaShopException('No template found for ' . $template); 69. } 70. 71. private function getTemplateHierarchy($template, $entity, $id) 72. { 73. $entity = basename($entity);

Really. There is no such file there, but neither is it in the standard PrestaShop installation.

What's the problem?

Screenshot 2021-10-04 at 14-50-50 Screenshot.png

Link to comment
Share on other sites

  • 3 months later...

I have upgrated yesterday an old Prestashop to the last version. I have only the default modules from the new Prestashop.

My theme is the original theme, I have a problem to regenerate the category thumbnail too, no override, etc, i don't find the problem...

Link to comment
Share on other sites

  • 3 years later...

For me, the problem comes from the way the server lists the files. If you go to a terminal in /controllers/front and run ls -U you'll probably see that the listing directory is among the files instead of listed first. This means that PrestaShop uses CategoryController.php in /front/ instead of CategoryController.php in /front/listing/.

With PS 1.7, change SCANDIR_SORT_NONE to SCANDIR_SORT_ASCENDING in /classes/PrestaShopAutoload.php.

With PS 8, add ->sortByName() to /vendor/prestashop/autoload/src/LegacyClassLoader.php

        $finder
            ->in($directories)
            ->followLinks()
            ->files()
            ->name('*.php')
            ->sortByName();

A better solution would be not to have to modify the base files...

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