Magento 设计 - 新主页专栏

发布于 2024-10-08 17:47:00 字数 200 浏览 4 评论 0原文

我想为我的 magento 商店进行自定义设计,如下所示:

alt text

我该如何继续执行此操作,特别是来自类别 1 和类别 2 的产品,我希望这个列表有一个新的标题,带有一些图像,而不是像标准类别网格一样...

非常感谢您的帮助;

I want to make a custom design for my magento store like this :

alt text

How can I proceed to do that, specially for the products from category1 and category2, I want there a new header for this list, with a little images, not like the standard category grid...

Thanks a lot for help;

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

傲世九天 2024-10-15 17:47:00
  • 创建 CMS 页面。
  • 切换到设计模式。选择布局 - 1 列。
  • 编辑布局更新 XML

    <块类型=“cms/块”名称=“block1_static”>
        cms_block1-static
    
    
    
    <块类型=“page/html_wrapper”名称=“left.callout.wrapper”翻译=“标签”>
        hompage-left-callout
        <块类型=“核心/模板”名称=“left.callout”模板=“callouts/right_col.phtml”>
            images/media/left_banner_1.gif
        
    
    
    
    <块类型=“page/html_wrapper”名称=“center.wrapper”翻译=“标签”>
        hompage-center
        <类型>bundlebundle/catalog_product_price ;
        <类型>捆绑<块>捆绑/catalog_product_price<模板>捆绑/目录/产品/price.phtml
    
    
    
    <块类型=“page/html_wrapper”名称=“right.callout.wrapper”翻译=“标签”>
        hompage-right-callout
        <块类型=“核心/模板”名称=“right.callout”模板=“callouts/right_col.phtml”>
            images/media/right_banner_1.gif
        
    
    

例如,有两个块 - 查看的产品和新产品。 Magento 中没有默认块来显示特定类别的产品。您应该为其创建此块和模板,并使用此块代替示例块。

您可以与 css 对齐的块的位置。每个块将用具有特定 ID 的 div 包裹。您可以设置包装块的 ElementId 和 ElementClass。

  • Create CMS page.
  • Switch to the Design mode. Select Layout - 1 column.
  • Edit Layout Update XML

    <block type="cms/block" name="block1_static">
        <action method="setBlockId"><id>cms_block1-static</id></action>
    </block>
    
    
    <block type="page/html_wrapper" name="left.callout.wrapper" translate="label">
        <action method="setElementId"><value>hompage-left-callout</value></action>
        <block type="core/template" name="left.callout" template="callouts/right_col.phtml">
            <action method="setImgSrc"><src>images/media/left_banner_1.gif</src></action>
        </block>
    </block>
    
    
    <block type="page/html_wrapper" name="center.wrapper" translate="label">
        <action method="setElementId"><value>hompage-center</value></action>
        <block type="catalog/product_new" name="home.catalog.product.new" alias="product_new" template="catalog/product/new.phtml" after="cms_page"><action method="addPriceBlockType"><type>bundle</type><block>bundle/catalog_product_price</block><template>bundle/catalog/product/price.phtml</template></action></block>
        <block type="reports/product_viewed" name="home.reports.product.viewed" alias="product_viewed" template="reports/home_product_viewed.phtml" after="product_new"><action method="addPriceBlockType"><type>bundle</type><block>bundle/catalog_product_price</block><template>bundle/catalog/product/price.phtml</template></action></block>
    </block>
    
    
    <block type="page/html_wrapper" name="right.callout.wrapper" translate="label">
        <action method="setElementId"><value>hompage-right-callout</value></action>
        <block type="core/template" name="right.callout" template="callouts/right_col.phtml">
            <action method="setImgSrc"><src>images/media/right_banner_1.gif</src></action>
        </block>
    </block>
    

There is two blocks for example - viewed products and new products. There is not default block to show products from specific category in Magento. You should create this block and template for it and use this block at place of examples block.

Position of blocks you may align with css. Each block will be wrapped with div with specific ID. ElementId and ElementClass you may set wrapper block.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文