Prestashop为特定类别创建自定义布局

时间:2016-01-14 13:19:06

标签: html css smarty prestashop prestashop-1.6

我尝试为客户端的某些类别创建不同的布局。我找到了一些像here这样的解决方案,但它是一个旧答案,我还需要更多细节。

我正在使用Prestashop 1.6.0.9,我想创建一个custom-product-list.tpl文件来更改布局并添加一些小功能(获取产品说明,获取所有产品图像等)。

有没有人解决过这个问题?我不介意一个结构良好的代码,因为价格非常低。如果硬编码简单快捷,我会更喜欢它。

提前谢谢。

2 个答案:

答案 0 :(得分:1)

可以有很多解决方案,但最常用的是这些解决方案。

1。编辑主题文件(首选)

Prestashop类别模板位于文件themes/[yourtheme]/category.tpl

你可以编辑它,放置一些像这样的代码:

YOUR_ID - 整数,类别的ID。

{if isset($category) && isset($category->id) && $category->id == YOUR_ID}

    {* your custome code *}

{else}

    {* place all default category.tpl code here *}

{/if}

此外,类别模板包含themes/[yourtheme]/product-list.tpl以及您可以在代码中找到的其他文件。您可以相应地更改这些.tpl文件。

2。覆盖类别控制器。

您可以覆盖类别控制器并使其使用任何其他模板文件,而不仅仅是themes/[yourtheme]/category.tpl

2.1使用以下代码创建文件override/controllers/front/CategoryController.php

<?php

class CategoryController extends CategoryControllerCore
{
    public function initContent()
    {
        /* loading the default code */
        parent::initContent();

        /* please add all categories ID for which you want to use this custom template */
        $custom_categories = array(1, 3);

        if (isset($this->category) && in_array($this->category->id, $custom_categories))
        {
            /* please change the file name 'category-1.tpl' 
            to any other file name you want to use in your theme directory,
            i. e. themes/[yourtheme]/category-1.tpl */
            $this->setTemplate(_PS_THEME_DIR_.'category-1.tpl');
        }
    }
{
}

2.2使用自定义代码创建文件themes/[yourtheme]/category-1.tpl(或使用其他名称)。

2.3 可选。出于安全原因,将任何index.php文件从除根文件夹之外的任何文件夹复制到您创建的文件夹(如果已创建),同时制作2.1部分。

答案 1 :(得分:0)

我一直在寻找这个,但是对于prestashop 1.7。 如果有帮助,这是我的解决方案。

覆盖CategoryController,以便我们可以为每个类别设置不同的模板。 然后我们只需要创建一个类别友好的URL名称+ category.tpl的文件夹 如果文件不存在,则使用默认文件。

    <?php
class CategoryController extends CategoryControllerCore
{
    public function initContent()
    {

        parent::initContent();
        $this->setTemplate($this->getTpl());

        //$this->setTemplate('category.tpl');
        //$this->setTemplate('module:categoryController/views/templates/front/display.tpl');
    }
    protected function getTpl()
    {
      // it seems in prestashop 1.7, the search folder for setTemplate is myThemeFolder/templates/
      // we set the default layout if there's not custom files
      $layout = $this->template; // which here is   $this->template : 'catalog/listing/category.tpl'

      if ($parents = $this->category->getParentsCategories(Configuration::get('PS_LANG_DEFAULT')))
        {

            foreach ($parents as $parent)
            {
                $parent = (object) $parent;
                if (isset($parent->link_rewrite))
                {
                    // server full path for file_exists. Example : /var/www/vhosts/myvps.address.net/website.folder/themes/myThemeFolder/templates/layouts/categories/women/category.tpl
                    $categoryLayoutOverride_path = _PS_THEME_DIR_ . 'templates/layouts/categories/' . $parent->link_rewrite . '/category.tpl';

                    // for custom template on a particular category, we must have a folder with the friendly url name of the category + category.tpl, in myThemeFolder/templates/layouts/categories folder/
                    // then the layout path value must start at root of templates folder like this : layouts/categories/(category friendly url)/category.tpl
                    $categoryLayoutOverride = 'layouts/categories/' . $parent->link_rewrite . '/category.tpl';

                    if (file_exists($categoryLayoutOverride_path))
                    {
                        $layout = $categoryLayoutOverride;
                        break;
                    }
                }
            }
        }
        return $layout;
    }
}
?>