Magento 1.9在页脚中显示最新的产品

时间:2014-10-13 13:07:07

标签: php html css magento e-commerce

编辑:事实证明,下面的解决方案实际上是正确的解决方案。事实证明,我的流浪盒没有安装php5-gd,所以magento没有做图像的东西,但PHP没有显示错误,说它没有安装。所以请确保安装php5-gd:P

美好的一天!

我目前正在开发一个基于Magento 1.9的电子商务网站,而且我基本上都会选择它。我目前正在采用静态设计并将其融入Magento主题。

我正在尝试向商店页脚区域商店中的6种最新产品展示图像(带链接),但我发现的教程和问题对我没用。

我基本上从静态模板中取出了我的页脚并将其粘贴到我的主题footer.phtml文件中。设计要求在html中显示六个图像(如果有意义的话)?

<div class="medium-6 large-3 columns newlyAdded">
    <div class="footerHat"></div>
    <h3> Newly Added</h3>
    <div class="row">
        <ul class="small-block-grid-3">
            <li><img src="./images/footer-image-1.jpg" alt="footer image"></li>
            <li><img src="./images/footer-image-2.jpg" alt="footer image"></li>
            <li><img src="./images/footer-image-3.jpg" alt="footer image"></li>
        </ul>
    </div>
    <p></p>
    <div class="row">
        <ul class="small-block-grid-3">
            <li><img src="./images/footer-image-4.jpg" alt="footer image"></li>
            <li><img src="./images/footer-image-5.jpg" alt="footer image"></li>
            <li><img src="./images/footer-image-6.jpg" alt="footer image"></li>
        </ul>
    </div>
</div>

我最初的想法是将其粘贴到一个静态块中然后从Magento中的模型中循环一些东西,但我不确定这是否是最佳方式。

非常感谢任何帮助,当然我会提供尽可能多的信息:)

由于

编辑:额外信息

page.xml文件中的

页脚相关内容:

<block type="page/html_footer" name="footer" as="footer" template="page/html/footer.phtml">
    <block type="page/html_wrapper" name="bottom.container" as="bottomContainer" translate="label">
        <label>Page Footer</label>
        <action method="setElementClass"><value>bottom-container</value></action>
    </block>
    <block type="page/switch" name="store_switcher" as="store_switcher" template="page/switch/stores.phtml"/>
    <block type="page/template_links" name="footer_links" as="footer_links" template="page/template/links.phtml"/>
</block>

<block type="core/text_list" name="before_body_end" as="before_body_end" translate="label">
    <label>Page Bottom</label>
    <block type="page/html_cookieNotice" name="global_cookie_notice" as ="global_cookie_notice" template="page/html/cookienotice.phtml" before="-" />
</block>

<reference name="footer">
    <block type="catalog/product_new" name="home.catalog.product.new" alias="product_new" template="catalog/product/new.phtml">
        <action method="setProductsCount"><count>4</count></action>
    </block>
</reference>

footer.phtml文件(默认magento版本)

<div class="footer-container">
    <div class="footer">
        <?php echo $this->getChildHtml() ?>
        <p class="bugs"><?php echo $this->__('Help Us to Keep Magento Healthy') ?> - <a href="http://www.magentocommerce.com/bug-tracking" onclick="this.target='_blank'"><strong><?php echo $this->__('Report All Bugs') ?></strong></a> <?php echo $this->__('(ver. %s)', Mage::getVersion()) ?></p>
        <address><?php echo $this->getCopyright() ?></address>
    </div>
</div>

custom_page.xml:

<?xml version="1.0"?>
<layout>
    <custom_layout translate="label">
        <label>Custom layout</label>
        <reference name="root">
            <action method="setTemplate"><template>page/custom_layout.phtml</template></action>
            <action method="setIsHandle"><applied>1</applied></action>
        </reference>
    </custom_layout>
</layout>

1 个答案:

答案 0 :(得分:0)

Magento已具备此功能,您可以使用以下代码在页脚/您想要显示的位置显示新产品

<reference name="footer">
<block type="catalog/product_new" name="home.catalog.product.new" alias="product_new" template="catalog/product/new.phtml" after="cms_page">
<action method="setProductsCount"><count>4</count></action>
</block>
</reference>

注意我认为您已经遵循了Magento的主题方式,并且有&#34;参考页脚&#34;如果你愿意,你可以将块代码放在任何引用调用中,并可以直接在你的footer.phtml中调用它。

如果您想为布局设置样式,请创建&#34; app / design / frontend / base / default / template / catalog / product / new.phtml&#34;在&#34; app / design / frontend / {themepackage} / {themename} /template/catalog/product/new.phtml"并修改布局。

如果您有任何疑问,请随时发表评论!希望这有帮助!