gpt4 book ai didi

image - Magento 1.7 :Show category image on category page in full width in a 2 column template

转载 作者:行者123 更新时间:2023-12-01 12:48:05 25 4
gpt4 key购买 nike

找不到运行 Magento 1.7 的此问题的解决方案。上面主列中显示的类别。我想在页面宽度的两列上方显示它。这是一个例子:http://www.vimodos.nl/schoenen?art_sex=92

谁有解决方案?非常感谢您的回复!

更新

感谢您的回复。我按照您的说明在 catalog.xml 中添加了一个名为 category.image 的 block

    <reference name="content">
<block type="catalog/category_view" name="category.products" template="catalog/category/view.phtml">
<block type="catalog/product_list" name="product_list" template="catalog/product/list.phtml">
<block type="catalog/category_image" name="category.image" template="catalog/category/image.phtml">
<block type="catalog/product_list_toolbar" name="product_list_toolbar" template="catalog/product/list/toolbar.phtml">
<block type="page/html_pager" name="product_list_toolbar_pager"/>

之后我在/template/catalog/category/下创建了一个 image.phtml 文件

重新加载类别页面时它是空的,没有错误消息。左侧栏中的小部件是可见的。

有什么建议吗?非常感谢!

最佳答案

这似乎是 Magento 的内置功能。<​​/p>

要启用它,请执行以下操作:

  • 登录管理面板
  • 转到目录->管理类别
  • 选择要添加图片的类别
  • 您会看到一个可以添加图片的地方(只需上传)
  • 添加图片后,它会自动显示在类别页面中

更新

下面是获取类别图片的代码:

$category = Mage::getModel('catalog/category')->load($catId);
$category->getImageUrl(); // remember to echo it out

为了在分层导航之上进行设置,请执行以下步骤:

  • 向 catalog.xml 添加一个 block (在:<catalog_category_default translate="label"> 部分。
  • 将上面的代码添加到模板文件(您在上面的 block 中引用)

如果您需要进一步的帮助,请告诉我们

关于image - Magento 1.7 :Show category image on category page in full width in a 2 column template,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14186458/

25 4 0