prestashop - 由主题定义的自定义图像大小

时间:2014-02-27 22:42:04

标签: themes prestashop prestashop-1.5

是按主题定义/更改图像大小的任何选项/代码,因此在应用主题时它将位于后台列表中?

我正在创建新的主题,我需要添加/修改一些图像大小,如果可以在主题内定义,而不是每次应用主题时在后台手动定义,都会更容易。

我花了一些时间用谷歌搜索但没有运气; - (

1 个答案:

答案 0 :(得分:0)

安装主题时,“themeinstallator”模块正在使用config.xml文件。

假设您的主题包含以下文件系统的zip文件:

/modules/*.*
/themes/yourtheme/*.*
/config.xml

在主文件夹中,您必须具有config.xml:

<?xml version="1.0" encoding="UTF-8"?>
<theme version="1.0" name="yourtheme" directory="yourtheme">
  <images>
    <image name="small_default" width="71" height="71" products="true" categories="true" manufacturers="true" suppliers="true" scenes="false"/>
    ....
  </images>
</theme>

属性和值对应于BackOffice&gt;中的属性和值。偏好 - &gt;图片页面。

最简单的方法是通过“themeinstallator”导出主题。